libdbd-sqlite2-perl 2:0.33-9build1 source package in Ubuntu

Changelog

libdbd-sqlite2-perl (2:0.33-9build1) oneiric; urgency=low

  * Rebuild for Perl 5.12.
 -- Colin Watson <email address hidden>   Mon, 09 May 2011 23:31:33 +0100

Upload details

Uploaded by:
Colin Watson
Uploaded to:
Oneiric
Original maintainer:
Debian Perl Group
Architectures:
any
Section:
perl
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Downloads

File Size SHA-256 Checksum
libdbd-sqlite2-perl_0.33.orig.tar.gz 354.8 KiB a2b493916adc76bd152916c0d9a28ef41cd251e5ba88b43ce3e9a5789b44e6b4
libdbd-sqlite2-perl_0.33-9build1.debian.tar.gz 5.1 KiB fd9b1be8c73cbe5af9dcc6ecfb7472562cb4037b096ffe466c9b14200d9cb786
libdbd-sqlite2-perl_0.33-9build1.dsc 2.2 KiB 4d46a67e8274d9fa5ad6e84646676c85314e94b460472e46d031deab41decfec

Available diffs

View changes file

Binary packages built by this source

libdbd-sqlite2-perl: Perl DBI driver with a self-contained RDBMS (SQLite2 version)

 This module embeds a small fast embedded SQL database engine called
 SQLite into a DBI driver, if you want a relational database for your
 project, but don't want to install a large RDBMS system like MySQL or
 PostgreSQL, then DBD::SQLite may be just what you need.
 .
 SQLite supports the following features:
 .
  * Implements a large subset of SQL92
    See http://www.hwaci.com/sw/sqlite/lang.html for details.
 .
  * 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. So beware. The database also
 appears to be significantly faster if your transactions are coarse.