2003-06-08 08:53:16 +02:00
|
|
|
PEAR::DB is a database abstraction layer providing:
|
2006-10-05 10:30:15 +02:00
|
|
|
|
2003-06-08 08:53:16 +02:00
|
|
|
* an OO-style query API
|
2006-10-05 10:30:15 +02:00
|
|
|
* portability features that make programs written for one DBMS work
|
|
|
|
with other DBMS's
|
2003-06-08 08:53:16 +02:00
|
|
|
* a DSN (data source name) format for specifying database servers
|
2006-10-05 10:30:15 +02:00
|
|
|
* prepare/execute (bind) emulation for databases that don't support
|
|
|
|
it natively
|
2003-06-08 08:53:16 +02:00
|
|
|
* a result object for each query response
|
|
|
|
* portable error codes
|
|
|
|
* sequence emulation
|
2005-02-24 22:46:40 +01:00
|
|
|
* sequential and non-sequential row fetching as well as bulk fetching
|
2007-01-11 08:42:21 +01:00
|
|
|
* formats fetched rows as associative arrays, ordered arrays or objects
|
2003-06-08 08:53:16 +02:00
|
|
|
* row limit support
|
|
|
|
* transactions support
|
|
|
|
* table information interface
|
2005-02-24 22:46:40 +01:00
|
|
|
* DocBook and phpDocumentor API documentation
|
2003-06-08 08:53:16 +02:00
|
|
|
|
2007-01-11 08:42:21 +01:00
|
|
|
Drivers for the following extensions pass the complete test suite and
|
|
|
|
provide interchangeability when all of DB's portability options are
|
|
|
|
enabled: fbsql, ibase, informix, msql, mssql, mysql, mysqli, oci8,
|
|
|
|
odbc, pgsql, sqlite and sybase.
|
2003-06-08 08:53:16 +02:00
|
|
|
|
2005-02-24 22:46:40 +01:00
|
|
|
WWW: http://pear.php.net/package/DB/
|