libdbd-sqlite3-perl 1.37-1 source package in Ubuntu

Changelog

libdbd-sqlite3-perl (1.37-1) unstable; urgency=low


  * Imported Upstream version 1.37
  * Update debian/copyright file.
    Update format to copyright-format 1.0 as released together with Debian
    policy 3.9.3.
    Update copyright years for upstream files.
    Update copyright years for debian/* packaging files.
  * Add information about possible compatibility problems to debian/NEWS
  * Bump versioned Build-Depends on debhelper to (>= 9)
  * Remove not needed debian/source.lintian-overrides
  * Simplify versioned Build-Depends.
    Change versioned Build-Depends for libdbi-perl and libsqlite3-dev
    already satisfied in Squeeze to unversioned Build-Depends.
  * Bump Standards-Version to 3.9.3
  * Add lintian-overrides for missing-field-in-dep5-copyright.
    Both stanzas are for files in public-domain.

 -- Salvatore Bonaccorso <email address hidden>  Sun, 10 Jun 2012 09:00:20 +0200

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
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-sqlite3-perl_1.37-1.dsc 2.3 KiB 24d2fda6a5e806457620b30d2bce38e82737ef36f260a754b7aff23ec32cd0c1
libdbd-sqlite3-perl_1.37.orig.tar.gz 1.4 MiB a131761c58e051be968ec21bef5d7549acfd2ba60dd2bf9ae342aaf8e99e2705
libdbd-sqlite3-perl_1.37-1.debian.tar.gz 9.2 KiB a0d120b3ca321d4ac1e5df0b0d28bf9b3ba3aba90dc398cb6d17ae38b1984037

Available diffs

No changes file available.

Binary packages built by this source

libdbd-sqlite3-perl: Perl DBI driver with a self-contained RDBMS

 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://www.sqlite.org/lang.html>)
  * 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.