libdbd-sqlite3-perl 1.78-ok1 source package in openKylin
Changelog
libdbd-sqlite3-perl (1.78-ok1) huanghe; urgency=medium * Build for openKylin. -- openKylinBot <email address hidden> Fri, 29 May 2026 07:18:43 -0700
libdbd-sqlite3-perl (1.78-ok1) huanghe; urgency=medium * Build for openKylin. -- openKylinBot <email address hidden> Fri, 29 May 2026 07:18:43 -0700
| Series | Published | Component | Section | |
|---|---|---|---|---|
| Huanghe V3.0 | proposed | main | perl |
| File | Size | SHA-256 Checksum |
|---|---|---|
| libdbd-sqlite3-perl_1.78.orig.tar.gz | 2.7 MiB | efbad7794bafaa4e7476c07445a33bbfe1040e380baa3395a02635eebe3859d5 |
| libdbd-sqlite3-perl_1.78-ok1.debian.tar.xz | 5.3 KiB | a528b443d76063bf9d56a5e024a5009f2ba793e1980a6aef444f914f2695886b |
| libdbd-sqlite3-perl_1.78-ok1.dsc | 2.1 KiB | 41588c4fa82df680039db3a0915f5a44f0041ee310df7ca0da2f9d1196e5e0c3 |
DBD::SQLite is a Perl DBI driver with a self-contained relational database
management system. It embeds a small and fast embedded SQL database engine
called SQLite (see sqlite3) into a DBI driver. It is useful if you want a
relational database for your project, but don't want to install a large
RDBMS system like MySQL or PostgreSQL.
.
SQLite supports the following features:
.
* Implements a large subset of SQL92 (<URL:http://
* A complete DB in a single disk file
Everything for your database is stored in a single disk file, making it
easier to move things around than with DBD::CSV.
* Atomic commit and rollback
.
The engine is very fast, but for updates/inserts/dml it does perform a global
lock on the entire database. This, obviously, might not be good for multiple
user systems. The database also appears to be significantly faster if your
transactions are coarse.