Top Level :: Database

Package Information: DB_Table 0.17

Show All Changelogs
» Version » Information
1.5.5 2008-06-17     stable
1.5.4 2008-06-08     stable
1.5.3 2008-06-06     stable
1.5.2 2008-05-14     stable
1.5.1 2008-03-28     stable
1.5.0 2007-06-27     stable
1.5.0RC3 2007-06-14     beta
1.5.0RC2 2007-03-25     beta
1.5.0RC1 2007-02-06     beta
1.4.0 2006-11-09     stable
1.3.2 2006-07-25     stable
1.3.1 2006-07-19     stable
1.3.0 2006-04-26     stable
1.3.0RC5 2006-04-19     beta
1.3.0RC4 2006-04-13     beta
1.3.0RC3 2006-04-07     beta
1.3.0RC2 2006-04-07     beta
1.3.0RC1 2006-02-27     beta
1.2.1 2005-09-13     stable
1.2.0 2005-08-29     stable
1.1.0 2005-08-07     stable
1.0.1 2005-05-28     stable
1.0.0 2005-03-07     stable
1.0.0RC1 2005-02-23     beta
0.23.0 2004-12-30     beta
0.22.0 2004-10-27     beta
0.21.2 2004-07-12     alpha
0.21.1 2004-07-11     alpha
0.21 2004-07-11     alpha
0.18 2004-04-23     alpha
0.17Download

Release date: 2004-04-21 12:24 UTC
Release state: alpha

Changelog:

* BREAKS BACKWARD COMPATIBILITY: You will need to edit and update your existing classes extended from DB_Table
* BC break: no longer uses a factory method; instantiate using "$obj =& new DB_Table();" and then check the error property ("if ($obj->error)...")
* BC break: all constants other than error codes are now string literals (e.g., DB_TABLE_COL_TYPE is now just 'type')
* BC break: method setup() no longer exists; you now define $this->col, $this->idx, and $this->sql as class properties (or in your extended constructor)
* BC break: DATETIME datatype is now named TIMESTAMP
* These should be the last major breaks in backwards compatibility; sorry for the trouble :-(
* Added 'char' native datatype and an emulated 'boolean' datatype
* Converted 'date', 'time', 'timestamp' emulated datatypes now created as fixed-length (not variable-length) character fields
* Added automatic check for reserved keywords under all supported databases at create() time (see the end of Manager.php)
* Improved auto-validation of 'decimal' data types
* Improved HTML_QuickForm element mapping and automation
* Improved fetchmode switching in select() and selectResult()
* Improved inline comments