libima-dbi-perl 0.35-3 source package in Ubuntu

Changelog

libima-dbi-perl (0.35-3) unstable; urgency=medium

  [ Salvatore Bonaccorso ]
  * Update Vcs-Browser URL to cgit web frontend
  * debian/control: Use HTTPS transport protocol for Vcs-Git URI

  [ gregor herrmann ]
  * Change bugtracker URL(s) to HTTPS.
  * debian/copyright: change Copyright-Format 1.0 URL to HTTPS.

  [ Alex Muntada ]
  * Remove inactive pkg-perl members from Uploaders.

  [ Salvatore Bonaccorso ]
  * Update Vcs-* headers for switch to salsa.debian.org

  [ gregor herrmann ]
  * debian/watch: use uscan version 4.

 -- Jelmer Vernooij <email address hidden>  Wed, 15 Jun 2022 00:38:15 +0100

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
perl
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe perl
Noble release universe perl
Mantic release universe perl
Lunar release universe perl

Builds

Kinetic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libima-dbi-perl_0.35-3.dsc 2.1 KiB a27ee2b21c522841bac25c79eb06121dba94de2ecadf4e0389e12ca988dfd832
libima-dbi-perl_0.35.orig.tar.gz 15.6 KiB 8b481ceedbf0ae4a83effb80581550008bfdd3885ef01145e3733c7097c00a08
libima-dbi-perl_0.35-3.debian.tar.xz 3.8 KiB f4f20c6326b1475d7ce2ffe5038440570b68d1fdc5790cd70614261b05d411b3

Available diffs

No changes file available.

Binary packages built by this source

libima-dbi-perl: module for database connection caching and organization

 Ima::DBI attempts to organize and facilitate caching and more
 efficient use of database connections and statement handles.
 .
 One of the things that can be annoying about writing large programs
 with DBI is making sure that you do not have duplicate database
 handles open. There is also the issue of the somewhat wasteful nature
 of the prepare/execute/finish route that users tend to go through.
 .
 The new DBI->connect_cached and DBI->prepare_cached help a lot, but
 you still have to throw around global information about the data
 source, username and password.
 .
 So, after a while the author grew a small library of DBI helper
 routines and techniques. Ima::DBI is the culmination of all this,
 put into a nice(?), clean(?) class to be inherited from.