php-db 1.7.14-3 source package in Ubuntu

Changelog

php-db (1.7.14-3) unstable; urgency=medium


  * Turn off db_error* tests, as they are broken with modern PHP
    versions. (Closes: #750287)
  * Remove self from uploaders.
  * Checked for policy 3.9.5, no changes.

 -- Thijs Kinkhorst <email address hidden>  Fri, 29 Aug 2014 14:57:41 +0000

Upload details

Uploaded by:
Debian PHP PEAR Maintainers
Uploaded to:
Sid
Original maintainer:
Debian PHP PEAR Maintainers
Architectures:
all
Section:
php
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Vivid: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
php-db_1.7.14-3.dsc 1.5 KiB d9a156605822ed7b8b9a3093a3df115f236d4146ad5d957d552c7f93d65d528c
php-db_1.7.14.orig.tar.gz 130.0 KiB a574483fd5c4440a4bf08018e8bcdde7f4619e9b964de2b357bd60733ec5919c
php-db_1.7.14-3.debian.tar.xz 5.3 KiB ab1845b4a8942790106d249ec485580acba91772071e9561d6dc562a8b14fdd9

Available diffs

No changes file available.

Binary packages built by this source

php-db: PHP PEAR Database Abstraction Layer

 DB is a database abstraction layer providing:
  * an OO-style query API
  * portability features that make programs written for one DBMS work
    with other DBMS's
  * a DSN (data source name) format for specifying database servers
  * prepare/execute (bind) emulation for databases that don't support it
    natively
  * a result object for each query response
  * portable error codes
  * sequence emulation
  * sequential and non-sequential row fetching as well as bulk fetching
  * formats fetched rows as associative arrays, ordered arrays or objects
  * row limit support
  * transactions support
  * table information interface
  * DocBook and phpDocumentor API documentation
 .
 DB layers itself on top of PHP's existing database extensions.
 .
 Drivers for the following extensions pass the complete test suite and
 provide interchangeability when all of the database's portability
 options are enabled:
  fbsql, ibase, informix, msql, mssql,
  mysql, mysqli, oci8, odbc, pgsql,
  sqlite and sybase.
 .
 There is also a driver for the dbase extension, but it can't be used
 interchangeably because dbase doesn't support many standard DBMS
 features.