Skip to content

Commit

Permalink
- updated changelog
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.php.net/repository/pear/packages/MDB2/trunk@212959 c90b9560-bf6c-de11-be94-00142212c4b1
  • Loading branch information
Lukas Smith committed May 13, 2006
1 parent 0139072 commit d157958
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 7 deletions.
9 changes: 7 additions & 2 deletions package.php
Expand Up @@ -14,7 +14,7 @@
- added ability to hint that a constraint is a primary key in dropConstraint()
- since we no longer complain about primary keys not being called primary we can
remove the necessary hacks in the test suite
- increased the size of the LOBs in the test suite
- improved LOB tests in the test suite
- do not require Manager module for core API tests
- added support for fixed and variable types for 'text' (Request #1523)
- updated MAINTAINERS to current status
Expand All @@ -28,9 +28,14 @@
and there are plenty of sample drivers to look at
- fixed example due to API change in MDB2_Schema (Bug #7575)
- added 'prepared_statements' supported meta data setting
- do not retrieve lob in the constructor
- do not retrieve lob in the stream constructor and streams_eof()
- strip of file:// prefix in writeLOBToFile()
- typo fix ressource/resource in LOB array
- removed lob property from the LOB streams wrapper (references are always
shaky business in PHP so lets use them as little as possible)
- fixed _destroyLOB() API to match other private LOB methods
- fixed phpdoc comments of all private LOB methods
- typo fix in autoincrement test
open todo items:
- handle autoincrement fields in alterTable()
Expand Down
1 change: 1 addition & 0 deletions package_fbsql.php
Expand Up @@ -12,6 +12,7 @@
- made _doQuery() return a reference
- added userinfo's to all raiseError calls that previously had none
- added 'prepared_statements' supported meta data setting
- marked primary key as supported
open todo items:
- this driver needs a serious update as it's currently unmaintained/untested
Expand Down
4 changes: 4 additions & 0 deletions package_ibase.php
Expand Up @@ -16,6 +16,10 @@
- added userinfo's to all raiseError calls that previously had none
- added 'prepared_statements' supported meta data setting
- typo fix ressource/resource in LOB array
- added missing unset() to _destroyLOB()
- fixed _destroyLOB() API to match other private LOB methods
- fixed phpdoc comments of all private LOB methods
- added missing supported parameter to prepare() signature
EOT;

$package = new PEAR_PackageFileManager();
Expand Down
1 change: 1 addition & 0 deletions package_mysql.php
Expand Up @@ -15,6 +15,7 @@
- added userinfo's to all raiseError calls that previously had none
- use native prepared queries of mysql 4.1 or higher
- added 'prepared_statements' supported meta data setting
- added missing supported parameter to prepare() signature
EOT;

$package = new PEAR_PackageFileManager();
Expand Down
1 change: 1 addition & 0 deletions package_mysqli.php
Expand Up @@ -20,6 +20,7 @@
- only use native prepared queries of mysql 4.1 or higher
- added 'prepared_statements' supported meta data setting
- fixed issue with free() returning void
- added missing supported parameter to prepare() signature
EOT;

$package = new PEAR_PackageFileManager();
Expand Down
5 changes: 5 additions & 0 deletions package_oci8.php
Expand Up @@ -19,6 +19,11 @@
- strip of file:// prefix in writeLOBToFile()
- typo fix ressource/resource in LOB array
- do not use foreach() on lob descriptor reference array
- marked primary key as supported
- some more fixes related to connecting (Bug #4104)
- seek(0) after calling load()/writetofile()
- fixed _destroyLOB() API to match other private LOB methods
- fixed phpdoc comments of all private LOB methods
open todo items:
- fix issues with testcreateautoincrementtable (error on sequence creation)
Expand Down
8 changes: 3 additions & 5 deletions package_pgsql.php
Expand Up @@ -16,11 +16,9 @@
- added 'prepared_statements' supported meta data setting
- strip of file:// prefix in writeLOBToFile()
- typo fix ressource/resource in LOB array
open todo items:
- considering migrating away from OID's to bytea, since this is encourage
since version 8 and is also what PDO expects, however there is no streaming
API for bytea columns .. this needs to be done using manually chunked reads/writes
- added missing supported parameter to prepare() signature
- properly handle explicit error codes in errorInfo()
- moved from OID to TEXT and BYTEA (OID handling was broken, its also deprecated)
EOT;

$package = new PEAR_PackageFileManager();
Expand Down

0 comments on commit d157958

Please sign in to comment.