Hi. I use a sqlite database in read-only mode. The database itself contains
just one table with an unique key, several strings and a double number per
row:


0 'book1' 'author1' 10.00
1 'book2' 'author2' 12.05
2 'book3' 'author3' 9.35
...


I use just the following SQL commands in my application to query from this
database:

SELECT ... FROM ... WHERE ...
SELECT DISTINCT FROM ... WHERE ...


I plan to compile sqlite3.c by myself and embed it into my app. Which
SQLITE_* directives I can use in compile-time to disable unused SQLITE
features to reduce the size of sqlite3.o?

Thanks.

--
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to