]> git.donarmstrong.com Git - infobot.git/blob - INSTALL.sqlite
35c6b7b3283b2fa9a3fbed9953110ef3c270c67a
[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 You may use either DBD::SQLite or DBD::SQLite2
19
20 SQLite sources:
21
22 http://www.hwaci.com/sw/sqlite/
23
24 DBD::SQLite sources:
25
26 http://search.cpan.org/author/MSERGEANT/DBD-SQLite/
27
28 You will also need the normal Perl DBD stuff which should be included in your
29 Perl distribution.