Works with both php4 and php5.
Postgresql driver's ServerInfo() function now works properly.
Added a new session handler, in adodb-session2.php.
ADODB_ACTIVE_RECORD, added find() method, and new constructor method
ODBC_DB2 driver now works properly
New BindDate() and BindTimeStamp() functions in connection object
New SetTransactionMode()
Fixed variable ref errors in adodb-ado5.inc.php in _query().
Mysqli setcharset fix using method_exists().
The adodb-perf.inc.php CreateLogTable() code now works for user-defined table names.
Error in ibase_blob_open() fixed. See
http://phplens.com/lens/lensforum/msgs.php?id=14997
Active Record
============
Now we only update fields that have changed, using $this->_original.
We do not include auto_increment fields in replace(). Thx Travis Cline
Added ADODB_ACTIVE_CACHESECS.
> 4.80 8 Mar 2006
>
> Added activerecord support.
>
> Added mysql $conn->compat323 = true if you want MySQL 3.23 compat enabled. Fixes GetOne() Select-Limit problems.
>
> Added adodb-xmlschema03.inc.php to support XML Schema version 3 and updated adodb-datadict.htm docs.
>
> 4.72 21 Feb 2006
>
> Added 'new' DSN parameter for NConnect().
>
> Pager now sanitizes $PHP_SELF to protect against XSS. Thx to James Bercegay and others.
>
> ADOConnection::MetaType changed to setup $rs->connection correctly.
>
> New native DB2 driver contributed by Larry Menard, Dan Scott, Andy Staudacher, Bharat Mediratta.
>
> The mssql CreateSequence() did not BEGIN TRANSACTION correctly. Fixed. Thx Sean Lee.
>
> The _adodb_countrecs() function in adodb-lib.inc.php has been revised to handle more ORDER BY variations.
> Recommended that all postgresql users upgrade to this version.
> Fixes important postgresql security issues problems related
> to binary strings. Thx to Andy Staudacher.
http://secunia.com/advisories/18575/
>
> Also several DSN bugs fixed, including one introduced in 4.70
> that corrupts underscores in the DSN, and in PHP5 DSN's did
> not work. Added support for PDO DSN connections.
>
> Misc bug fixes.
No available changelog
Does include a fix for a known security issue:
http://secunia.com/advisories/17418/
"disclose system information, execute arbitrary SQL code, and potentially
compromise a vulnerable system."
Portelli.
ADOdb stands for Active Data Objects Data Base. It currently supports MySQL,
PostgreSQL, Interbase, Informix, Oracle, MS SQL 7, Foxpro, Access, ADO, Sybase,
DB2 and generic ODBC. The Sybase, Informix and PostgreSQL drivers are community
contributions. We hope more people will contribute drivers to support more
databases.
Unique Features of ADOdb
- Easy for Windows programmers to understand. Makes porting ASP code to PHP
easy because many of the conventions are similar to Microsoft's ADO.
- We provide support code to handle inserts and updates which can be adapted
to multiple databases quickly. Methods are provided for date handling,
string concatenation and string quoting characters for differing databases.
- A metatype system is built in so that we can figure out that types such as
CHAR, TEXT and STRING are equivalent in different databases.
- Easy to port because all the database dependent code are stored in stub
functions. You do not need to port the core logic of the classes.
- SQL to popup menu (<SELECT>) support included
- PHP4 Session support.