wok annotate perl-dbd-sqlite/description.txt @ rev 25037

Up glza (0.11.4)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 21 21:38:29 2022 +0000 (2022-05-21)
parents
children
rev   line source
Hans-G?nter@24199 1 DBD::SQLite is a Perl DBI driver for SQLite, that includes the
Hans-G?nter@24199 2 entire thing in the distribution.
Hans-G?nter@24199 3 So in order to get a fast transaction capable RDBMS working for
Hans-G?nter@24199 4 your perl project you simply have to install this module,
Hans-G?nter@24199 5 and nothing else.
Hans-G?nter@24199 6
Hans-G?nter@24199 7 SQLite supports the following features:
Hans-G?nter@24199 8
Hans-G?nter@24199 9 - Implements a large subset of SQL92
Hans-G?nter@24199 10 - A complete DB in a single disk file
Hans-G?nter@24199 11 - Atomic commit and rollback
Hans-G?nter@24199 12 - Extensible
Hans-G?nter@24199 13
Hans-G?nter@24199 14 There's lots more to it, so please refer to the docs on the SQLite
Hans-G?nter@24199 15 web page for SQL details.
Hans-G?nter@24199 16 Also refer to DBI for details on how to use DBI itself.
Hans-G?nter@24199 17 The API works like every DBI module does.
Hans-G?nter@24199 18 However, currently many statement attributes are not implemented or
Hans-G?nter@24199 19 are limited by the typeless nature of the SQLite database.