wiki:Packages/SQLite

Version 3 (modified by C Rempel, on 06/20/12 at 22:14:27) (diff)

/* Some quick notes */

SQLite

Some quick notes

To build SQLite, you need TCL...

~$ sudo apt-get tcl8.5

SQLite uses fossil for their development branch, so if you use their development branch, you have some steps to go through:

First, check out a "fossil" which is a single file with all the information

~/sqlite$ fossil clone http://www.sqlite.org/cgi/src/dir trunk.fossil

Second, make and navigate into an sqlite directory:

~$ mkdir sqlite ~$ cd sqlite

Third, open the fossil file

~/sqlite$ fossil open ../trunk.fossil

Fourth close the fossil file

~/sqlite$ fossil close ../trunk.fossil

Haven't gotten any farther, but I thought that was rather interesting...

References

This looks promising... http://www.crosscompile.org/static/pages/SQLite.html