|
|
|
|
|
by liuliu
1399 days ago
|
|
> I think the most intoxicating thing about SQLite is that you don't have to install or configure even one goddamn thing. There are a lot of configuration options when compiling SQLite, and some of its defaults are pretty conservative (e.g. assuming no usleep and default to `sleep` unless `HAVE_USLEEP` specified). Generally I recommend looking into how Apple configures its SQLite (SQLite provides https://www.sqlite.org/c3ref/compileoption_get.html to query) and modify to your needs. Definitely look into compilation options if you plan to embed SQLite into your application. |
|