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@205578 c90b9560-bf6c-de11-be94-00142212c4b1
  • Loading branch information
quipo committed Jan 19, 2006
1 parent 6461789 commit 5b85769
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions package.php
Expand Up @@ -11,6 +11,8 @@
- added support for out of order parameter binding in prepared queries
- reset row_limit and row_offset after calling prepare() just like we do for query() and exec()
- cosmetic fix (removed "row_" prefix from "row_limit" and "row_offset")
- now using INT/TINYINT/SMALLINT by default instead of CHAR(1) for the boolean datatype
(BC BREAK!)
EOT;

$description =<<<EOT
Expand Down
1 change: 1 addition & 0 deletions package_ibase.php
Expand Up @@ -11,6 +11,7 @@
- added support for out of order parameter binding in prepared queries
- reset row_limit and row_offset after calling prepare() just like we do for query() and exec()
- cosmetic fix (removed "row_" prefix from "row_limit" and "row_offset")
- now using SMALLINT by default instead of CHAR(1) for the boolean datatype (BC BREAK!)
open todo items:
- handle autoincremement fields in alterTable()
Expand Down
1 change: 1 addition & 0 deletions package_mysql.php
Expand Up @@ -7,6 +7,7 @@
- added support for length in integer and decimal columns
- removed ugly hack for quote parameter in quote() since it was insufficient
(escaping also needs to be prevented)
- now using TINYINT by default instead of CHAR(1) for the boolean datatype (BC BREAK!)
EOT;

$package = new PEAR_PackageFileManager();
Expand Down
1 change: 1 addition & 0 deletions package_mysqli.php
Expand Up @@ -11,6 +11,7 @@
- added support for out of order parameter binding in prepared queries
- reset row_limit and row_offset after calling prepare() just like we do for query() and exec()
- cosmetic fix (removed "row_" prefix from "row_limit" and "row_offset")
- now using TINYINT by default instead of CHAR(1) for the boolean datatype (BC BREAK!)
open todo item:
- use native prepared queries for prepared SELECT statements
Expand Down
1 change: 1 addition & 0 deletions package_oci8.php
Expand Up @@ -12,6 +12,7 @@
- reset row_limit and row_offset after calling prepare() just like we do for query() and exec()
- rewrite queries for limit/offset (taken from ezc) instead of emulating
- cosmetic fix (removed "row_" prefix from "row_limit" and "row_offset")
- now using INTEGER(1) by default instead of CHAR(1) for the boolean datatype (BC BREAK!)
open todo items:
- fix issues with lobs where the placeholder is not named like the field
Expand Down

0 comments on commit 5b85769

Please sign in to comment.