%general-entities; ]> $LastChangedBy$ $Date$ SQLite-&sqlite-version; SQLite Introduction to SQLite The SQLite package is a software library that implements a self-contained, serverless, zero-configuration, transactional SQL database engine. &lfs65_checked; Package Information Download (HTTP): Download (FTP): Download MD5 sum: &sqlite-md5sum; Download size: &sqlite-size; Estimated disk space required: &sqlite-buildsize; Estimated build time: &sqlite-time; Additional Downloads Optional Documentation Download (HTTP): Download MD5 sum: &sqlite-docs-md5sum; Download size: &sqlite-docs-size; User Notes: Installation of SQLite If you downloaded the optional documentation, issue the following command to install the documentation into the source tree: unzip -q ../sqlite_docs_&sqlite-docs-version;.zip Install SQLite by running the following commands: ./configure --prefix=/usr \ --enable-threadsafe \ --enable-readline \ --enable-dynamic-extensions && make This package does not come with a test suite. Now, as the root user: make install If you downloaded the optional documentation, issue the following commands as the root user to install it: install -v -m755 -d /usr/share/doc/sqlite-&sqlite-version; & cp -v -R sqlite-&sqlite-docs-version;-docs/* \ /usr/share/doc/sqlite-&sqlite-version; Command Explanations --enable-threadsafe: Though the documentation and running ./configure --help indicate that this is the default, it is not. You must add this parameter if you want a threadsafe library. --enable-readline: This parameter enables command line editing capability to the sqlite3 program. --enable-dynamic-extensions: This creates library modules that are dynamically linked as needed instead of statically linking them into the main SQLite library. Contents Installed Program Installed Library Installed Directories sqlite3 libsqlite3.{so,a} None Short Descriptions sqlite3 A terminal-based front-end to the SQLite library that can evaluate queries interactively and display the results. sqlite3 libsqlite3.{so,a} Contains the SQLite API functions. libsqlite3.{so,a}