Advertisement
Guest User

Untitled

a guest
Jul 21st, 2015
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.03 KB | None | 0 0
  1. About pear.php.net/DB-1.7.14
  2. ============================
  3. Release Type PEAR-style PHP-based Package
  4. Name DB
  5. Channel pear.php.net
  6. Summary Database Abstraction Layer
  7. Description DB is a database abstraction layer providing:
  8. * an OO-style query API
  9. * portability features that make programs
  10. written for one DBMS work with other DBMS's
  11. * a DSN (data source name) format for specifying
  12. database servers
  13. * prepare/execute (bind) emulation for databases
  14. that don't support it natively
  15. * a result object for each query response
  16. * portable error codes
  17. * sequence emulation
  18. * sequential and non-sequential row fetching as
  19. well as bulk fetching
  20. * formats fetched rows as associative arrays,
  21. ordered arrays or objects
  22. * row limit support
  23. * transactions support
  24. * table information interface
  25. * DocBook and phpDocumentor API documentation
  26.  
  27. DB layers itself on top of PHP's existing
  28. database extensions.
  29.  
  30. Drivers for the following extensions pass
  31. the complete test suite and provide
  32. interchangeability when all of DB's
  33. portability options are enabled:
  34.  
  35. fbsql, ibase, informix, msql, mssql,
  36. mysql, mysqli, oci8, odbc, pgsql,
  37. sqlite and sybase.
  38.  
  39. There is also a driver for the dbase
  40. extension, but it can't be used
  41. interchangeably because dbase doesn't
  42. support many standard DBMS features.
  43.  
  44. DB is compatible with both PHP 4 and PHP 5.
  45. Maintainers Daniel Convissor <danielc@php.net> (lead)
  46. Adam Harvey <aharvey@php.net> (lead)
  47. Stig Bakken <stig@php.net> (developer, inactive)
  48. Tomas V.V.Cox <cox@idecnet.com> (developer,
  49. inactive)
  50. Release Date 2011-08-27 12:40:39
  51. Release Version 1.7.14 (stable)
  52. API Version 1.7.14 (stable)
  53. License PHP License (http://www.php.net/license)
  54. Release Notes Changes since 1.7.13:
  55.  
  56. All drivers:
  57. * Made the definition of DB_common::raiseError()
  58. compatible with PEAR::raiseError() by adding
  59. dummy parameters. Request 11581.
  60. * Fixed SKIP block in the 20locale.phpt test.
  61. * Fixed non-persistent connections to really be
  62. non-persistent when unserialising. Bug 15115.
  63.  
  64. ibase:
  65. * Changed the order of regular expressions
  66. applied when mapping errors so that constraint
  67. violations in PHP 4.4 are actually reported as
  68. constraint violations and not table not found
  69. errors.
  70. * Fixed a test that should have been skipped in
  71. PHP 4.4.
  72.  
  73.  
  74. ifx:
  75. * Use PCRE rather than ereg. Bug 17722, patch by
  76. Olle Jonsson.
  77.  
  78. mssql:
  79. * Fix escaping of string values with lines
  80. ending in a backslash character. Bug 16117.
  81.  
  82. oci8:
  83. * Fix for last_query reconstruction with lots of
  84. placeholders. Bug 12418, patch by Nicholas
  85. Evans.
  86. * Fix replacement of values in last_query for
  87. :bind's numbered over 10. Bug 14603.
  88. * Unset $_prepared_queries in freePrepared().
  89. Bug 14271.
  90.  
  91. pgsql:
  92. * Added special-case to handle SAVEPOINT queries
  93. as manip queries. Bug 12260.
  94. * Implement rudimentary support for
  95. WITH...SELECT queries. Bug 17136.
  96.  
  97. sqlite:
  98. * Added support for another error message in the
  99. SQLite driver. Bug 12105, patch by Adam Ashley.
  100. * Implement auto_increment support in
  101. tableInfo(). Request 13193.
  102. Required Dependencies PHP version 4.2.0
  103. PEAR installer version 1.4.0b1 or newer
  104. Package pear.php.net/PEAR
  105. Version 1.0b1 or newer
  106. package.xml version 2.0
  107. Last Modified 2012-06-30 07:15
  108. Previous Installed - None -
  109. Version
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement