]> git.donarmstrong.com Git - infobot.git/commitdiff
more sqlite info
authortimriker <timriker@c11ca15a-4712-0410-83d8-924469b57eb5>
Thu, 21 Nov 2002 08:20:10 +0000 (08:20 +0000)
committertimriker <timriker@c11ca15a-4712-0410-83d8-924469b57eb5>
Thu, 21 Nov 2002 08:20:10 +0000 (08:20 +0000)
git-svn-id: https://svn.code.sf.net/p/infobot/code/trunk@639 c11ca15a-4712-0410-83d8-924469b57eb5

blootbot/INSTALL.sqlite

index a216df2ee9d26e587580d005564285dfad9d1c24..cc7b2c197e2993d2ba12f9c5f47a94e4b90448e0 100644 (file)
@@ -1,5 +1,27 @@
 INSTALL.sqlite
 ----------------
 
+SQLite is a C library that implements an embeddable SQL database engine.
+Programs that link with the SQLite library can have SQL database access without
+running a separate RDBMS process. The distribution comes with a standalone
+command-line access program (sqlite) that can be used to administer an SQLite
+database and which serves as an example of how to use the SQLite library.
+
+blootbot will create a file called <DBname>.sqlite and populate the tables for
+you if they do not already exist.
+
 - Install SQLite libraries and DBI Perl modules.
        - Debian: (apt-get install libsqlite0 libdbd-sqlite-perl)
+
+other distros might need to build from sources.
+
+SQLite sources:
+
+http://www.hwaci.com/sw/sqlite/ 
+
+DBD::SQLite sources:
+
+http://search.cpan.org/author/MSERGEANT/DBD-SQLite/
+
+You will also need the normal Perl DBD stuff which
+should be included in your Perl distribution.