#sqlite
2 posts tagged sqlite. Clear filter
-
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 nameoftable And done.
-
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...