libsql-tiny-perl 0.04-2 source package in Ubuntu

Changelog

libsql-tiny-perl (0.04-2) unstable; urgency=medium

  [ gregor herrmann ]
  * debian/copyright: replace tabs with spaces / remove trailing
    whitespace.

  [ Debian Janitor ]
  * Set upstream metadata fields: Bug-Submit.
  * Update standards version to 4.5.0, no changes needed.
  * Bump debhelper from old 12 to 13.
  * Update standards version to 4.5.1, no changes needed.
  * Update standards version to 4.6.0, no changes needed.
  * Update standards version to 4.6.1, no changes needed.

 -- Jelmer Vernooij <email address hidden>  Mon, 21 Nov 2022 09:32:37 +0000

Upload details

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

See full publishing history Publishing

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

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libsql-tiny-perl_0.04-2.dsc 2.0 KiB 1725ddf73e51a4b76bbc2b6b3e95e358a321fd75c98434439f9d4d4eb9e30b39
libsql-tiny-perl_0.04.orig.tar.gz 5.8 KiB d66673a565b0aa7eb2070bb9e367a5fcb996a8d534759b4afe8e27580c54290b
libsql-tiny-perl_0.04-2.debian.tar.xz 4.8 KiB 614f7544ee0c879ab61eae86768f4c244ed755535bff9b501f017e6c024cd7b1

Available diffs

No changes file available.

Binary packages built by this source

libsql-tiny-perl: simple SQL-building library

 SQL::Tiny is a very simple SQL-building library. It's not for all SQL needs,
 only the very simple ones.
 .
 SQL::Tiny is for generating SQL code for simple cases. It doesn't handle
 JOINs. It doesn't handle GROUP BY. It doesn't handle subselects. It's only
 for simple SQL.
 .
 The trade-off for that brevity of code is that SQL::Tiny has to make new SQL
 and binds from the input every time. You can't cache the SQL that comes back
 from SQL::Tiny because the placeholders could vary depending on what the
 input data is. Therefore, you don't want to use SQL::Tiny where speed is
 essential.