| | 1 | = 2010-05-11 = |
| | 2 | |
| | 3 | == Perl + SQLite3 == |
| | 4 | |
| | 5 | * [專案] 實作 Perl + SQLite |
| | 6 | * 環境: Debian 5.0.4 , |
| | 7 | {{{ |
| | 8 | jazz@drbl:~$ lsb_release -a |
| | 9 | No LSB modules are available. |
| | 10 | Distributor ID: Debian |
| | 11 | Description: Debian GNU/Linux 5.0.4 (lenny) |
| | 12 | Release: 5.0.4 |
| | 13 | Codename: lenny |
| | 14 | jazz@drbl:~$ uname -a |
| | 15 | Linux drbl 2.6.26-lustre-amd64 #1 SMP Sun Jun 28 18:28:02 CST 2009 x86_64 GNU/Linux |
| | 16 | }}} |
| | 17 | * 相關套件: [http://packages.debian.org/sqlite3 sqlite3],[http://packages.debian.org/libsqlite3-0 libsqlite3-0],[http://packages.debian.org/libdbd-sqlite3-perl libdbd-sqlite3-perl] |
| | 18 | {{{ |
| | 19 | jazz@drbl:~$ sudo apt-get install sqlite3 libdbd-sqlite3-perl libsqlite3-0 |
| | 20 | jazz@drbl:~$ dpkg -l | grep sqlite |
| | 21 | ii libdbd-sqlite3-perl 1.14-3 Perl DBI driver with a self-contained RDBMS |
| | 22 | ii libsqlite3-0 3.5.9-6 SQLite 3 shared library |
| | 23 | ii sqlite3 3.5.9-6 A command line interface for SQLite 3 |
| | 24 | }}} |