]> git.donarmstrong.com Git - infobot.git/blob - INSTALL.sqlite
ws
[infobot.git] / INSTALL.sqlite
1 INSTALL.sqlite
2 ----------------
3
4 SQLite is a C library that implements an embeddable SQL database engine.
5 Programs that link with the SQLite library can have SQL database access without
6 running a separate RDBMS process. The distribution comes with a standalone
7 command-line access program (sqlite) that can be used to administer an SQLite
8 database and which serves as an example of how to use the SQLite library.
9
10 blootbot will create a file called <DBname>.sqlite and populate the tables for
11 you if they do not already exist.
12
13 - Install SQLite libraries and DBI Perl modules.
14         - Debian: (apt-get install libsqlite0 libdbd-sqlite-perl)
15
16 other distros might need to build from sources.
17
18 SQLite sources:
19
20 http://www.hwaci.com/sw/sqlite/
21
22 DBD::SQLite sources:
23
24 http://search.cpan.org/author/MSERGEANT/DBD-SQLite/
25
26 You will also need the normal Perl DBD stuff which should be included in your
27 Perl distribution.