How to import CSV into SQLite3  
  
    To import a CSV file into SQLite is easy. 
	sqlite3 my.db
	.mode csv
	.import path/to/file.csv name_of_table
	
And done.   
  
    
      Written by Sean Behan on 12/03/2017
    
  
 
  
    How to Find An SQLite Database with React Native and the iPhone Simulator.  
  
    I spent a few hours digging around my file system using `find` and `grep` hunting for my SQLite database that the iPhone Simulator was using for my React Native project. And no luck. 
But I found a simple solution was to use `react-native log-ios` and ...  
  
    
      Written by Sean Behan on 06/29/2017