wok-6.x diff perl-dbd-sqlite/description.txt @ rev 25122
Up apache (2.4.54)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Jun 28 08:48:09 2022 +0000 (2022-06-28) |
parents | |
children |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/perl-dbd-sqlite/description.txt Tue Jun 28 08:48:09 2022 +0000 1.3 @@ -0,0 +1,19 @@ 1.4 +DBD::SQLite is a Perl DBI driver for SQLite, that includes the 1.5 +entire thing in the distribution. 1.6 +So in order to get a fast transaction capable RDBMS working for 1.7 +your perl project you simply have to install this module, 1.8 +and nothing else. 1.9 + 1.10 +SQLite supports the following features: 1.11 + 1.12 +- Implements a large subset of SQL92 1.13 +- A complete DB in a single disk file 1.14 +- Atomic commit and rollback 1.15 +- Extensible 1.16 + 1.17 +There's lots more to it, so please refer to the docs on the SQLite 1.18 +web page for SQL details. 1.19 +Also refer to DBI for details on how to use DBI itself. 1.20 +The API works like every DBI module does. 1.21 +However, currently many statement attributes are not implemented or 1.22 +are limited by the typeless nature of the SQLite database.