| > Create and modify tables with ease using Base's visual table editor. No need to write complex CREATE or ALTER statements. I'm trying to understand who your target audience is? Normally, I think of SQLite as something that only a programmer would use. (And thus these kind of statements happen within an application.) What kind of use cases are you handling where someone is manually creating / changing a schema? > Import data from CSV and SQL dump files. Export your results to SQL, delimited text, JSON, and Excel formats. IE, who's using SQLite in this way, and what are they using it for? |
As to importing/exporting data (csv, etc), You can't exactly run queries against a CSV generally (I mean you can with JET/ODBC, but still)... it's a chore.
To another point, I often feel that sqlite is a great backup format for data, it's portable, you can query directly, etc. I kind of wished that Azure Data Studio (now discontinued) had directly supported loading CSV/TXT etc into an in-memory or temp db for queries and portability similar to mentioned between various data sources (sqlite, mssql, pgsql, etc).