[Phplib-commit] CVS: php-lib-stable CHANGES,1.30,1.31
Brought to you by:
nhruby,
richardarcher
From: Layne W. <lay...@us...> - 2004-07-23 20:36:38
|
Update of /cvsroot/phplib/php-lib-stable In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18134 Modified Files: CHANGES Log Message: db classes - cleaned up and allowed a bit more flexibility template.inc - allow alternate variable name regex matching Index: CHANGES =================================================================== RCS file: /cvsroot/phplib/php-lib-stable/CHANGES,v retrieving revision 1.30 retrieving revision 1.31 diff -C2 -d -r1.30 -r1.31 *** CHANGES 31 Dec 2003 17:18:51 -0000 1.30 --- CHANGES 23 Jul 2004 20:36:29 -0000 1.31 *************** *** 1,4 **** --- 1,33 ---- $Id$ + 23-Jul-2004 layne_weathers + - all db classes + - don't call query() from constructor with an empty $query string + - implement Halt_On_Error setting from MySQL class + - output errors wrapped in <p> - previous table-closing behavior assumed + too much + - use function connect_failed() for printing connection failure notice + allows for customizable connection error handling in extension classes + (e.g. display a page that matches the site design). The default + connection error messages have been standardized across all db classes. + - primary class names are derived from database name allowing multiple + database classes in one script. If no DB_Sql class exists (or if using + PHP 3 which cannot find classes), a DB_Sql extension class is created + for backwords compatibility. + - db_oci8.inc + - allow forcing of shared database connections within scripts + (reuse Link_ID) - default off + - remove constants (OCI_COMMIT_ON_SUCCESS, OCI_DEFAULT) from quotes + - quote strings used as indexes + - start Record with empty array on each next_record(), previous behaviour + allowed Record with values from multiple queries + - load object columns on next_record instead of waiting for f() + - template.inc + - allow for loose or strict template variable regex. Loose is the default, + matching any set of curly braces with no whitespace between (this will + also match portions of certain JavaScript regular expressions). Strict + follows the PHP variable naming rules (may not start with a numeral and + may only contain numerals, letters, and underscores). + 31-Dec-2003 layne_weathers - template.inc - enabled output of filename comments as proposed on users list. |