| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| adodb518a.zip | 2012-09-06 | 738.5 kB | |
| adodb518a.tgz | 2012-09-06 | 544.5 kB | |
| README.txt | 2012-09-04 | 1.7 kB | |
| Totals: 3 Items | 1.3 MB | 0 | |
ADODB Library for PHP5
======================
(c) 2000-2012 John Lim (jlim@natsoft.com)
Released under both BSD and GNU Lesser GPL library license.
This means you can use it in proprietary products.
ADOdb 5.18 3 Sep 2012
=====================
New postgres9 driver to support postgres9 features. Misc bug fixes.
Change log
==========
** datadict-postgres: Fixes bug in ALTER COL. See http://phplens.com/lens/lensforum/msgs.php?id=19202. Also fixed bugs in MetaType() checking $fieldobj properties.
** GetRowAssoc did not work with null values. Bug in 5.17.
** postgres9: New driver to better support PostgreSQL 9. Thx Glenn Herteg and Cacti team.
** sqlite3: Modified to support php 5.4. Thx Gunter Weber built.development#googlemail.com
** adodb: When fetch mode is ADODB_FETCH_ASSOC, and we execute $db->GetAssoc("select 'a','0'"); we get an error. Fixed. See http://phplens.com/lens/lensforum/msgs.php?id=19190
** adodb: Caching directory permissions now configurable using global variable
$ADODB_CACHE_PERMS. Default value is 0771.
** mysqli: SetCharSet() did not return true (success) or false (fail) correctly. Fixed.
** mysqli: changed dataProvider to 'mysql' so that MetaError and other shared functions will work.
** mssqlnative: Prepare() did not work previously. Now calling Prepare() will work but the sql is not actually compiled. Unfortunately bind params are passed to sqlsrv_prepare and not to sqlsrv_execute.
make Prepare() and empty function, and we still execute the unprepared stmt.
** mysql: FetchField(-1), turns it is is not possible to retrieve the max_length. Set to -1.
** mysql-perf: Fixed "SHOW INNODB STATUS". Change to "SHOW ENGINE INNODB STATUS"