SQLite is not a toy database
antonz.org
SQLite is not a toy database
1–10 of 364 posts
Re: SQLite is not a toy database
#2Maybe if you use SQLite as a file format. But if you use it like an actual database (e.g. in a web application), I find that one is best off setting up a daemon thread to queue/batch transactions.
Re: SQLite is not a toy database
#3Re: SQLite is not a toy database
#4https://www.sqlite.org/appfunc.html
We just started enhancing our SQL dialect with new functions which are implemented in C# code. One of them is an aggregate and it is really incredible to see how it simplifies projections involving multiple rows.
One huge benefit of SQLite's idea of UDFs is that you can actually set breakpoints and debug them as SQL is executing.
Re: SQLite is not a toy database
#5Re: SQLite is not a toy database
#6I had to work on a data import/export tool some time ago and SQLite has simplified the design a lot.
Re: SQLite is not a toy database
#7Re: SQLite is not a toy database
#8Re: SQLite is not a toy database
#9Re: SQLite is not a toy database
#10Does anyone use SQLite as their daily-driver in lieu of R or pandas for data analysis? I don't think I can use the sqlite command-line since I'd want a fully-developed plotting utility, and it seems less convenient to do the actual analysis part through a sqlite connection in python, say.