Home » Database » DB_DataObject
An SQL Builder, Object Interface to Database Tables
This package is unmaintained.
Download latest release 1.11.5 (archived versions might be outdated)
License: PHP License 3.01
Description
DataObject performs 2 tasks:
1. Builds SQL statements based on the objects vars and the builder methods.
2. acts as a datastore for a table row.
The core class is designed to be extended for each of your tables so that you put the
data logic inside the data classes.
included is a Generator to make your configuration files and your base classes.
Documentation
Maintainers
- Alan Knowles (alan_k) — lead, active
Dependencies
Required
- PHP (>= 5.0)
- PEAR Installer (>= 1.4.0b1)
- Date (>= 1.4.3)
Optional
Releases
- 1.11.5 (stable, 2015-11-10)
Release notes
License: PHP License 3.01
Minor feature and fix release.
Changes
#---- - force usage of tableName - rather than direct access to __table
#---- - autoJoin: check joined tables against database structureBugs
#20536 - generator spaces after dataobject variablesFeature requests
#20540 - support empty extends_location so that no require_once is generated by Generator - 1.11.4 (stable, 2015-04-08)
Release notes
License: PHP License 3.01
Minor feature and fix release. (Basically a yearly release now..)
#20291 Ignored in update $dao->field = 0 (fix bad check for null)
#20149 - correct free for linked objects / more detailed error reporting on update error
#19962 - Cannot insert or update when part of a reference in multi-key case is NULL by vtamma
#19973 - accept START TRANSACTION as an alias for BEGIN
- suuport for useindex (mysql only) and
#19922 - pear error not being set in static property.
- fix static infront of depricated staticget() method and fix call to PEAR:: static calls.
- Fix some static errors that are now fatal unfortunatly...
- fix building of autojoin when using distinct columns - 1.11.3 (stable, 2014-04-22)
Release notes
License: PHP License 3.01
Minor feature and fix release. (Basically a yearly release now..)
#19922 - fix for pear error not being set in static property.
#19973 - accept START TRANSACTION as an alias for BEGIN
#19962 - Cannot insert or update when part of a reference in multi-key case is NULL by vtamma
#20149 - correct free for linked objects / more detailed error reporting on update error
- fix building of autojoin when using distinct columns - 1.11.2 (stable, 2013-04-05)
Release notes
License: PHP License 3.01
(re-release of 1.11.0 - to fix archive tar issue. / fix dependancy)
Minor feature and fix release. (Basically a yearly release now..)
Dependancies
MDB2 and DB are now optional dependancies, although one of them is required.
AutoJoin - improvements
- support sqlValue and DB_DataObject_Cast values in setFrom()
- correct filtering - diff and intersect... so additional cols do not get injected by exclude..
- autoJoin( "exclude" => array( "col1", "col2") ) should now exclude the columns from selectAdd/As
- correctly handle include in autojoin - based on derived column names
- autojoin now supports include and distinct, and returns count as the column to count on + handles Closure on debugging output of config
Other Changes
- add limited support for building derived table queries - which can speed up mysql queries hugely when using distinct/limit
Removed / changed / depricated
- remove PHP4 support
- Make staticGet depricated in generator and main code (move to end of file with rest of depricated stuff..
Minor fixes
- fix signature on depricated staticGet method
- fix typo in links code DO::getLinks()
- fix is_a syntax error - RTFM might be a good idea
- check return value from generator
- remove blob test from stringtostring code..
Bug Fixes
#19697 - str_replace only if needed to reduce memory - and move staticAutoloadTAble to depricated section
#19637 - strip support with regex broke boolean settings
#19640 - indentation not correct on generator
#19500 - use same way that pear db mssql driver quotes for regular strings (tidy up)
#19500 - support for mssql in DataObject Cast
#19505 - simplify the proxy loading code detection and usage.
#19479 - simpler test should do the job
#19479 - link loaded test was incorrect
#19475 - comment out a few echos that got left in - 1.11.1 (stable, 2013-04-05)
- 1.11.0 (stable, 2013-04-03)
- 1.10.0 (stable, 2012-04-27)
Release notes
License: PHP License 3.01
Minor feature and fix release.
#----- - Fix transactions - query(BEGIN) did not actually run when called.
#----- - Refactor Link and join code
- link code moved to DB_DataObject_Link, new option generate_link_methods, new method link()
- make the links option work with autojoin, add setter feature to links()
- support links option on autojoin
- add support for excluded columns on autoJoin
- more detailed check on assigning numbers in link()
- new link syntax in generated methods
- make links() support same array syntax as joinAdd(), and change links() to
support input as func_get_args() for the second argument, cleans up wrapper code..
- support joinAdd(array("local_col", $dataObject, "remote_col"), "LEFT"),
extra debugging on count(), and case sensitive checking on numRows (not sure if that was needed..)#----- - remove notes relating to MDB as they are not relivant anymore
#----- - SVN/git has new directory layout#----- - Add pid() - a quick way to get the value from the primary "id" column of the database
#----- - add sqlValue() - a factory method to create a DB_DataObject_Cast Object
#----- - nice warning on failed to write to temporary file
#----- - fixes to correctly support portability in selectAs()
#----- - fixes to correctly support portability in joinAdd#----- - lower case links and ini during load, when portability set, fix handling in joinAdd
#----- - add experimental support for posgresql introspected native keys
#----- - move assignment to error in raiseError after it actually happens, this should
ensure _lastError gets set correctly as the aliased setting does not appear to
work very well..
#----- - find() will return false when an error occurs (rather than 0)
#18995 - Remove error_reporting settings from tests (closes bug #18995).
#18931 - typos in comments - rasmus would appreciate this one... (depreciated to depricated)
#----- - support ini_database in foreign key generation, and regex matching on strip schema
#----- - document change to generator_strip_schema which now supports regexp to strip from
matching schemas
#----- - add support for portability in tableName() - most references to tablename will
now call tablename, so that code working on mysql can work on postgres,
where tables are mixed case in mysql.
#----- - document build_views change
#----- - support _TEXT type (postgres view returns this.)
#----- - support build_views=schema.views for building dataobjects from views with schemas
#18767 - use argv0 for the usage line, and ensure that is is run from cli sapi - 1.9.6 (stable, 2011-08-29)
Release notes
License: PHP License 3.01
Small fix release.
#18749 - Fix is_a() for 5.3.7+ due to php-core stupidity
#18602 - optimize fetch - thanks to shadesofgraylin
#18605 - optimize sprintf in toArray()
#18446 - use table() method rather than accessing static global.
#----- - toArray support for only returning returned columns use "0" as the second parameter
#----- - allow tableless dataobject connect() call to work
#----- - disable overload using DB_DATAOBJECT_NO_OVERLOAD on PHP5 - Im supprised no one ever noticed this - overload is EVIL ;)
#----- - Add autoJoin method, which will build a full join with all related tables.
#16867 - fix doc comments - change to public methods for the ones that are supposed to be overridden
#17637 - fix detection of non-existant links files resulting in defaulting to autolinks - 1.9.5 (stable, 2010-07-07)
Release notes
License: PHP License 3.01
Small fix release.
fix bug #17554 - update when id=0 (or primary key is 0) - thanks to the persistance of Jacek Pawlowski
- 1.9.4 (stable, 2010-06-21)
Release notes
License: PHP License 3.01
Bug Fixes
#17508 - whereAddIn used wrong method to quote strings
#6202 - better docs on getLinkArray - needs documentation as well really..
#17343 - tidy up padding code, - fix alignnment of comments in generated files (Original Patch
by madsliejensen)
#17289 - fix sequence_<table> = XXXXX (madsliejensen)
#17157 - use property_exists in newer versions of php.New Features
#7590 - union support - thanks to Ian Carmichael
#----- - whereAdd in support for negative (prefix column with '!') and empty arrays forces 1=0 query.
#13798 - add hookpostvar for adding things like varchar len data etc.. as per req
#16267 - Linking Multiple foreign keys - supports links.ini id[] = table1:col1 id[] =...
#17049 - generate links.ini for postgres - by madsliejensen - 1.9.3 (stable, 2010-01-15)
Release notes
License: PHP License 3.01
Fix broken release (1.9.1 and 1.9.2)
fetchAll() / whereAddIn() Release version.
This version adds two new utility methods, that can speed up usage,
fetchAll() - does the $do->find() / while($do->fetch()) $ar[] = clone($do) loop, and more.
whereAddIn() - allows you to quickly build IN queries, with correct escaping. - 1.9.0 (stable, 2009-12-03)
Release notes
License: PHP License 3.01
Modular Release version.
This version was designed to support multiple locations of DataObjects for use with
modular applications. - NOTE the change to ini_DATABASENAME may fixes the previous behaviour to
match the documented behaviour - however this may break existing installations.New Features:
#------- class_location accepts multiple locations with PATH_SEPARATOR
#------- class_prefix accepts multiple prefixes with PATH_SEPARATOR
#------- ini_DATABASENAME merges all found ini files in paths (seperated by PATH_SEPARATOR)
previous behaviour was just to read the first. - this applies to matching links.ini files.
#12550 - disable_null_strings=full -- see the bug report for details - it is highly recommended not to use this feature,
as it may result in data being deleted from your database if not used carefully.Notes:
#------- staticGet now marked depreciated.
#------- links_DATABASENAME does not support multiple paths
#------- staticAutoloadTable (depreciated) and staticGet (depreciated) do not support this feature - 1.8.12 (stable, 2009-08-12)
Release notes
License: PHP License 3.01
Licence upgrade Release
#----- - Changed Error and Cast Licence to 3.01 to keep Debian/Ubuntu happy. - 1.8.11 (stable, 2009-07-16)
Release notes
License: PHP License 3.01
Licence upgrade Release
#----- - Licence changed to 3.01 to keep Debian/Ubuntu happy.
#----- - Change order of preference for links in JoinAdd - prefer called table links over jointo table.
#----- - Retry support for connection failure on queries
#----- - Factory now uses '/' for database/table seperator (experimental)
#----- - Fix INSERT on Postresql with empty data. - 1.8.10 (stable, 2009-03-19)
Release notes
License: PHP License 3.01
Annual Release - Minor Bugfixs / Extra Features
#----- - Fix factory error with database name not found
#----- - Change factory multi-database call to use '/' rather than '.' so
that it can work with postgres (also syncs with what the original notes said) - 1.8.9 (stable, 2009-03-12)
Release notes
License: PHP License
Annual Release - Minor Bugfixs / Extra Features
#15066 - limited support for POINT (at least generator creates something)
#14976 - add option generator_omit_database_var to prevent creation of
$database lines (Troy Anderson)
#13995 - incorrect test in sequence key for postgres
#14252 - doc comments on delete() corrected to say return value is no. of
rows affected on success###### - ensure that tableinfo uses quote_identifiers_tableinfo
###### - add sqlite support to Cast blobs
###### - old skipEmpty check broke formating on setFrom
###### - remove previous checks on database dsn lookup - move it to factory.
###### - Fix count check for no keys. - By Jeffrey Pfau
###### - Add multidatabase factory() support - eg.
DB_DataObject::factory("mydatabase.mytable");
###### - Added checks to ensure that database names match requested ones.
#13773 - delete(true) honours join conditions
#13788 - test for error before re-writing definition table for MDB2 in Generator
#13789 - honour user specified MDB2 options in Generator
#13790 - support CLOB oracle
#12993 - add new option generator_secondary_key_match - set to false, to
disable key matching for secondary key types - 1.8.8 (stable, 2008-01-29)
Release notes
License: PHP License
Minor Bugfix / Feature Release
Pre-chinese new year release (with lots of 8's...)Bug Fixes
#12556 - Generator - pregmatch appears broken for replacing class name on updating files
#10112 - additional config option quote_identifiers_tableinfo for use with tableinfo on generator
Fixes issues with Oracle and quoting identifiers.
#11773 - problems with object->array[prop] setting on PHP5.2.3
** this may also have been fixed twice by fix for #11775
#12858 - MDB2 and postgres missing db_driver variable
#9902 - default portability options for MDB2 to not fix case.
#9658 - postgres DECIMAL using DB backend incorrectly
flagged as unknown - changed warning to suggest using MDB2
#11091 - count attempted to read quote identifiers before config was loaded
#11804 - insert with postgres/msql return wrong error message
#9364 - fix postgres native sequences with MDB
#11775 - unsetting of $this->_query causes overload setters/getters to
handle later uses of _query and break due to lack of array accessor support
#11634 - Windows fails to rename files if they exist - affecting Generator
(try and fix it so unix is still atomic) - 1.8.7 (stable, 2007-07-11)
Release notes
License: PHP License
Minor Bugfix Release
Bug Fixes:
#11586 - missing default value in Generator for class_prefix caused warning
#11584 - typo in Generator caused permissions to be incorrectly set on ini file. - 1.8.6 (stable, 2007-07-10)
Release notes
License: PHP License
Minor Bugfix and Minor Feature addition release
Bug Fixes:
#11483 - show an error if pcre limits are not correctly set and generator tries to generate empty files
#11528 - sending like queries to escape does not escape % and _ - added additional parameter to
escape : [bool $likeEscape] is optional and can be used to force escaping of these characters
#10573 - fix permissions on generated files
#10573 - write Generated files to temp directory, then rename into place. - fixing locking issues
#10531 - correct fix for bug #9628 (support MDB2 for defaults())
#10454 - mssql uses wrong variable name for options.
#10175 - MDB2 does not return length value
#9573 - enable disable_null_strings to turn of "null"-> NULL replacements
#9625 - MDB2 support for MSSQL sequencies
#9644 - incorrect constant in foriegn key generation.
#9628 - support MDB2 for defaults()
#9839 - Invalid column names can not be supported, so warning is generated
#9834 - SQL2003 standards on Joins - adds brackets around ON()
#4266 - minor fix to appendJoin code
#9755 - generator showed php error if connection failed
#9730 - quote identifiers on composite joins* feature request
#4266 - joins with multiple keys
#2216 - JOIN ON conversion of Where condition into ON arguments - patch by David Sanders
#---- add in docbook hooks to generator - as requested/coded by Vyacheslav Iutin - 1.8.5 (stable, 2006-12-14)
Release notes
License: PHP License
Minor Bugfix and Minor Feature addition release
* #8876 - call free() after count - hopefully this will not break anything!
* #8736 - auto_increment check for MDB2 backend
* #8628 - tableInfo fix for MDB2
* #7792 - add integer[] and boolean[] support
* #7702 - memory leaks on getLinks() , free() is called
within getLinks(), - you still need to call free() after doing a
getLink() - as I suspect automagically doing that would cause
problems..
* #7409 - ibase support for filename based database names - not sure if this works, but
will ask reporter to test it..
* #7353 - postgres incorrect testing of t/f for booleans
* #7114 = generator of sequence keys and defaults using generator_no_ini
* #3773 - change last_value to currval - need to confirm this is the correct fix.
* #3152 - joinAdd requires join column to be in links.ini file
Feature Requests:
* Feature Request #4266 - Allow joins with multiple keys
Minor Changes:
* dont flush on debugging html output
* links.ini code generation based on schema (mysql[i] only) -
option:generate_links=true - thanks to Pacal Schoni
* add warning about unknown types in generator.
* only prefix database name, in joins when the two objects are of different databases
* nicer error message for !isreadable - thx to Euan Maxwell
* use class exists loader, so that relative test relative paths in
tests work, (also means that autoload may work...)
* remove pass by reference - why on earth that was there in the first place is totally beyond me...
* give derivedHookFunctions the ability to use the original input data
* add methods
getClassNameFromTableName(),
getFileNameFromTableName(),
getMethodNameFromColumnName(),
which allow you to set up your own mapping system by overriding them in
your extended generator.. it however needs some support in dataobjects so currently
flagged as EXPERIMENTAL - 1.8.4 (stable, 2006-03-05)
Release notes
License: PHP License
Minor Bugfix and Minor Feature addition release
Bugs
----
#7006 - fix links due to removal of databaseStructure call in 1.8.3, added call
to connect();
#7012 - joinAdd fixed due to checking of wrong variable when buidling query on
mysql.
Features
--------
- Add support for defaults() generation in createTables/Generator,
when using the flag generator_add_defaults = yes or generator_no_ini = yes
a method defaults() is created in the table class, which contains
the default values for the table generated from the database.
Note: EXPERIMENTAL and only works with Mysql[i] at present. - 1.8.3 (stable, 2006-03-03)
Release notes
License: PHP License
Minor Bugfix and Minor Feature addition release
Bugs
----
- Remove Warning if class_prefix is not set, and allow it not to be set.
- joinAdd() support for DB_DataObject::cast() objects (Daniel Braga)
- MDB2 fixes for undefined constants (bate)
-
#6772 - Support for FLOAT4 type in postgres
#6953 - Changed memory allocation of stored column values for SQL return when
Fetching last item of an object. Fixing problem of missing columns on
Last fetch from Join being broken when used with toArray().
#6928 - Defaulting to prefixing database name in joins for Mysql and Mysqli
backends, so multiple joins across multiple databases work.
Features
--------
- Add support for option 'generator_no_ini => true', which generates class
files with schema defined inside the table(), keys() and sequenceKeys()
(based on work and suggestions by Didler Galland and Justin Patrin)
- SQL output for debugging now has line breaks to make it easier to read.
- SelectAs uses quote itendifiers for target format. - 1.8.2 (stable, 2006-01-20)
Release notes
License: PHP License
Minor Bugfix release
Bugs
----
#6543 - Generator broke due to MDB changes. - 1.8.1 (stable, 2006-01-20)
Release notes
License: PHP License
Bugs
----
#6153 - dont call autoload on PHP5 - kludgy wrapper around class_exists()
#6458 - clear staticGet cache when calling free()
#6442 - validation not working correctly on DB_DataObject_Cast Objects
Changes/New Features
--------------------
* fix warning if setFrom called with object..
* make createTables honour debug level in ini file.
* Added support in generator, for MDB2 backend to generate the class files (bate) - 1.8.0 (stable, 2005-12-28)
Release notes
License: PHP License
Major Bug Fix & Feature release.
Bugs:
#4871 - remove warning when value is not found in table
#4834 - case sensitive checks for db_dataobject_cast fail
#4894 - Validate methods can return PEAR Errors, or even
messages now.. - only true indicates success
#4938 - support MONEY type for MSSQL
#4968 - count() will not be affected by changing default
db fetchmode
#5036 - make sure DB is loaded before using it
#5264 - add optional dep on MDB
#5416 - use tablea AS tableb only for postgress/mysql -
oracle doesnt need the AS bit - and I guess a few others too..
available and first fetch fails
conditions
#5614 - joinAdd check to see if object being joined is
really a dataobject
#5065 - count returns number cast to an integer (even
though database may return a string)
#5800 - generator will continue creating other tables if we find one
that fails...
#5881 - wrap conditions with extra brackets
remaining checks in validate
#5393 - flag up unique only keys as "U", rather than "K"
(or "N" for native) to allow anything calling keys() to find more
detailed information - should have no effect on the dataobject
class, as only sequence keys looks for "K"Feature Requests:
#5146 - option: generator_var_keyword,
to specify if you want to use var or publicOther Changes
default behaviour.. so it shouldnt really have affected anyone..
amazed no one picked this up before..
* make WHERE stripping better = well spotted Justin
* catch errors returned from nextID - like permission denied etc.,
add warnings in debug mode if we are using objects or arrays for
some reason, fix error messages
* correct the dependancy on packages
* the dont die here causes a recursive error and segfaults
everything if it doesnt return..
* use is_a, rather than PEAR, as one day we may remove that dep...
* fix PHP4.4* issues with returning by reference..
* make debugging schema loading errors a bit easier
* test for bug #5931 added to test 91
* update($dataobject), change check for changes to strict checking,
so that 0001 -> 00001 works, along with many other situations..,
remove extra ; from code
* fix null detection on postgres, - patch by Alistair MacDonald
* free result columns as well as results after fetching all rows. - 1.7.15 (stable, 2005-07-07)
Release notes
License: PHP License
Minor Bugfix release
* fix bug #4760 - DB_DataObject_Cast blobs broke in last release - 1.7.14 (stable, 2005-06-25)
Release notes
License: PHP License
Bugfix release (Mostly)
Special thanks to Dan Rossi for the MDB Backend work on this release.Key changes:
- SQLlite support for files.
- MDB Backend support (experimental) use:
db_driver = MDB
as a config option.
NOTE: the generator will probably not work.
- toArray() has an extra argument (bool)hideEmpty,
which prevents it returning key/value pair when the value is empty
- DB_DataObject_Cast object was redesigned to enable better quoting of
blobs
- PostgresSQL schema for tablenames can be removed with the
generator_strip_schema = 1
- Fetch return value and object->N are now "true", rather than 1
when numRows is not supported, (also document it on find())
Bugs Fixed.
* fix bug #4672 - query(COMMIT) relays return value from DB->commit()
* fix bug #4535 - fix update/select etc. for postgres with boolean values.
* fix bug #4601 - wrong method used to test if file for sqlite
* fix bug #4193 - sqlite names causing invalid .ini files
* fix bug #4518 - escape and transactions fixed for MDB backend
* fix bug #4431 - add hideEmpty to toArray() - not sure if I really
like this.. - adding args to methods, the root of all evil ;)
* fix bug #4383 - generator getListOf() call now expects pear errors
* fix bug #4235
#4203 - schema mess with postgres.
generator_strip_schema=1
will strip the schema part from the name of the table.
* fix bug #4168 - if connection test is sucessfull, dont try and
connect.. (performance improvement)
* fix bug #4040 - prevent toArray from calling getLink and getLinks
* fix bug #4019 - createTables uses sets up options for DB
compatibility mode
* fix bug #4000 - better checking for php 4.3.10
* fix bug #3944 - support for informix autoincrements
* fix bug #4182 - better string and blob support on mysql in cast
* fix bug #4135 - boolean values borked in condition building.. - 1.7.13 (stable, 2005-03-24)
Release notes
License: PHP License
Minor Bugfix release
#3943 - postgres booleans broke again due to last fix for mysqli. - 1.7.12 (stable, 2005-03-22)
Release notes
License: PHP License
Daily Bugfix release. ;)
#3898 - mysqli quote bug fixed. (Greg Beaver)
#------ provisional support for mysql blobs in Cast object (Antony Jankelowitz) - 1.7.11 (stable, 2005-03-21)
Release notes
License: PHP License
Minor Bugfix release.
#3898 - fix count , which got broken by previous distinct argument changes
#------ support $x IS NOT NULL using $obj->value = DB_DataObject_Cast::sql("NOT NULL"); - 1.7.10 (stable, 2005-03-15)
Release notes
License: PHP License
Minor Bugfix release.
#3829 - joinAdd fix for database prefixing (yet again) - 1.7.9 (stable, 2005-03-12)
Release notes
License: PHP License
Minor Bugfix release.
#3764 - toValue(), and hence toArray() cast booleans to true|false. (previous fix was buggy) - 1.7.8 (stable, 2005-03-11)
Release notes
License: PHP License
Minor Bugfix release.
#3764 - toValue(), and hence toArray() cast booleans to true|false.
#3763 - createTables.php defines NO_OVERLOAD to prevent warnings on PHP4.3.10.#3768 - Hopefully last fix to joinAdd() / database prefixing and quoteIdentifiers
#3761 - Fixed DB_DataObject::datetime() bad code.
#3783 - count('distinct') builds the query distinct [primary_key], should help in some situations
using joinAdd + group By etc. - 1.7.7 (stable, 2005-03-06)
Release notes
License: PHP License
Minor bug fix release - join add with table fixes broke for mysql with last release
Bug Fixes:
#---- - Joins incorrectly prefect database name for mysql/mysqli
(Thanks to Mark Mitchenall for spotting this)
#---- used wrong variable for checking prefixes.
(Stephane Gully) - 1.7.6 (stable, 2005-03-04)
Release notes
License: PHP License
Nothing like a big release to create bugs..
Note: the last release also included method creation for setters and getters,
which got missed out from the changelog.
Bug Fixes:
#3708 - Generator did not clear last files contents when generating new files.
#3706 - Joins broke on everything except mysql (database prefix now only added to mysql) - 1.7.5 (stable, 2005-03-01)
Release notes
License: PHP License
A few releases where skipped, this should be the amalgamated upgrade!
Note: php4.3.10 will exit with an error if you dont define NO_OVERLOAD, rather
than segfaulting..Generator is buggy with 5.0.3 - upgrade DB or PHP..
Bug Fixes:
#3584 - Cast now supports time and datetime, (theiron)
#3645 - PHP4 clone FC hack now calls $obj->__clone() in a similar way to PHP5
#2928 - lastError contains the last error when query bugs out now.
#2674 - column names null / true /false etc. now halt createtables
#2778 - more informative warning shown when postgres bug is found.
#---- - experimental multidatabase join support
#2739 - sleep is relayed into __call - bug in PHP5
#2565 - oci8 NUMBER type recoginzed
#---- - new option generate_add_validate_stubs = 1, creates validate stubs.
#---- - more comprehensive limit support (Lutz Thomas)
#---- - allow access to columns starting with _ eg. set_xxx() & get_xxx()
(Sandro)
#---- - Generator write E_STRICT code for PHP5 now
#2441 - Debugging code removed.
#---- - multiple HAVING calls now supported.
#2468 - remove warning hider.
#2318 - update($do) when no changes detected returns true.
#2319 - joinAdd does not use AS when table and target have same name.
#---- - Dia diagram generation tools available in CVS (build diagrams from dataobjects)
#2267 - additional debugging information available at connect time - 1.7.2 (stable, 2004-08-28)
Release notes
License: PHP License
Minor bug fix / Minor feature addition release
Bug Fixes:
#1835 - more fixes to ensure that joinAdd works correctly.
#2106 - Update with old object having no changes does not raise an error
#---- - fixed problem of call() code producing parse error on PHP5.0.1
#2205 - fixed case sensitivity of PHP5 call()
#---- - fixed undefined index in delete after a fetch()
Features Added:
#2086 - Support for buliding dataobjects for Views (use option build_view=1)
#2240 - factory() called on a dataobject returns a new instance of that object. - 1.7.1 (stable, 2004-08-08)
Release notes
License: PHP License
Minor bug fix release
Bug Fixes:
#2088 - class_prefix may be left out.
#------ php4.2 compatibility should work as advertised in last realease
#------ Generator didnt have DB loaded due to lazy load changes. - 1.7.0 (stable, 2004-08-06)
Release notes
License: PHP License
Major bug fix release, Minor features added.
Bug Fixes:
#1559 - __FUNCTION__ remove, so dependancy on php 4.2 may still be valid.
#1595 - regex include/exclude working correctly (Thanks to Stephane Gully)
#1664 - configuration line links_{databasename} now available
#1726 - enable orderby and limit can be used with delete()
#1697 - prevent generator from adding an extra line created after definition.
#1704 - update only adds null when the column is not marked 'not null'
#1778 - toArray() returns a merge of defined table and actual results
#1828 - Generator will die, if tableinfo is not supported.
#1833 - links() now returns an empty array (no links) or null (no links.ini)
so it can be used generically with : $ar = (array) $do->links();
#1835 - getLinks, getLink etc. now use ->links(), so you can define your
own links() to return table links, rather than use links.ini files.
#1923 - removed all @ silencers, and replace with empty/isset.
#1935 - selectAs() - removed double quoteIdentifiers
#2068 - workaround for DB bug, postgres nextval() being rawurlencoded
#1980 - logic error when using quoteIdentifiers
Changes:
* DebugLevel(1) now displays native errors from database when queries fail.
* Result Field names now stored seperately from Result Object
* free() method added, to clean up memory instantly, if you are doing alot of queries.
= Cleans Result Fields, Result Object, NumRows returned in Connection object.
* include path is used to do file hunting if factory fails to find file.
* DB is lazy loaded on connection.b - 1.6.1 (stable, 2004-06-03)
Release notes
License: PHP License
Minor Bug Fix
* fixed count() breaks when countWhat used.
- 1.6.0 (stable, 2004-06-02)
Release notes
License: PHP License
Minor Feature Release and many bug fixes..
* DB_DataObject_Error added to enable testing for dataobject errors
* Date fixes - needs latest date package.
* Generator fails with clear message if backend doesnt support tableInfo
* added cidr, inet, macaddr for postgres
* new options to filter generation of classes
generator_include_regex = /foo_.*/i
generator_exclude_regex = /tmp_.*/i
* result column list is now stored for all queries (in the result object)
so toArray() allways relates to the query.
* php version correted in package file.
* getLinks called before other database call fixed.
* Updating without changing things, no longer raises a pear error,
it just returns 0 (eg. no rows affected)
* now Depends on 1.4 DB - escapeSimple is now used
* extra option to disable assumtions to use pear db's nextID
dont_use_pear_sequences = true
* DebugLevel($val) if $val is not an integer - it is assumed to be a callback.
* fixed clearing of data results after last fetch (reduces memory consumption
when doing many queries)
* strtolower any class name tests.
* count accepts 1 or 2 arguments
$countWhat or $whereAddonly, or $countWhat and $whereAddonly
eg. $countWhat = "distinct id"
eg. $countWhat = true (means $whereAdd = true)
* selectAdd() returns existing value, so you can modify it.
* most debugging & raiseError calls are dynamic, so you can overload them.
* numbers allowed in tablenames.
* ini filename uses database_{projectname} => {projectname}.ini so
database names are portable, and multiple projects are theoretically feasible.
* __clone is replaced with clone() for PHP5 compaitiblity.
* use PEAR::getStaticProperty("DB","options") for oracle portablity settings.
* null checked against not null spec.And probably a few more - as it's been quite a while since the last release..
- 1.5.3 (stable, 2004-01-29)
Release notes
License: PHP License
Bug fix release.
Changes:
- fixed toValue()
** previously did not work correclty..
** getXXX($format) correctly relays into toValue - see strftime / Data::format or sprintf
for formats, depending on column type.
Fixes
* fix bug #630 - correct handling of YEAR (it's an int)
* fix bug #630 - mysql timestamps are ingored for updated and insert (use query() if you want to change
them manually.
* fix bug #620 - limit accepts floats and doubles, as long as they are really integers.. - 1.5.2 (stable, 2004-01-24)
Release notes
License: PHP License
Bug fix release.
Changes:
- removed automatic strtotime() in setters and setFrom
** this is closer to the previous behaviour (it caused too many problems with strange dates
** if you set a date/time column with a number, it assumes it is a unixtimestamp
-- enables you to write setters like
function setSome_Date($value) { $this->fromValue('some_date',strtotime($value)); }
Fixes
* $DB_DataObject->getDatabaseConnection() will return a pear error if dont_die is set,
so it can be used to test connections.
* note changed on databaseStructure, it can be called statically and dynamically.
* fix bug #612 databaseStructure('databasename') will output the ini file structure array , with __keys
* fix bug #611 corrected comment about NO_OVERLOAD
* fix bug #603 to prevent clearing of queries after fetch, use the option keep_query_after_fetch = 1
* fix bug #359 (again) - _link_loaded array should only contain links that where sucessfully loaded - 1.5.1 (stable, 2004-01-21)
Release notes
License: PHP License
Bug fix release.
Fixes
* fixed fromValue had problems with null and DataOBject_Cast objects
* NOT NULL checking enabled in fromValue (eg. setters)
* fix bug #605 - ability to specify sequence names
option sequence_{tablename} = {column} // default {tablename}_seq
option sequence_{tablename} = {column}:{sequence_name}
* Dependancy on Date added. (it is used by the setter/getters) - 1.5 (stable, 2004-01-20)
Release notes
License: PHP License
New Features / Fixes
* proxy and auto schema building
- you can use dataobjects wihout running create tables.
- schema is created on the fly if no schema file exists
- using config option proxy=full, a class is generated on the fly to
represent the tables.
* toValue and fromValue added as getter and setter providers
- they include date formating tools - eg.
$do->getBirthDay('%d/%m/%Y') will work with overload and PEAR::Date
to provide formated dates. (works with date/time and datetime)
- set*() will also call strtotime and PEAR::Date to try and read dates.\
setFrom will relay into fromValue() - hence auto fixing date entries
* make native key recognision a little better - changes ini file
format (key=N|K) - native or key. - BC protected... - ignores it
when it finds a number.. (Fixes bug #532)
* allow multiple updates on the same object - without adding lots
of id=.... on the end..
* transactions support works transparently by sending
$do->query('BEGIN'), $do->query('COMMIT'),$do->query('ROLLBACK')
will automatically relay into the DB methods.
* re-add support for sequence_{tablename} - prefered method is still
overriding sequenceKey, and returning correct values.Bug Fixes
* fix bug #595 - replace non letters in class names with underscore..
* fix bug #532 - better recoginsion of sequence keys
* fix bug #528/#476 - typo fix (E_NOTICE error on $valu)
* fix bug #473 - query can return a DB_Error
* fix bug #501 - autoload/factory now uses full path (not require path)
* fix bug #507 - sequences broken - 1.4 (stable, 2003-12-19)
- 1.3 (stable, 2003-11-14)
Release notes
License: PHP License
New Features
- Inserts and updates do not use keys in the data creation part of the query
(Markus Wolff)- MsSQL native get_last_insert ID using SELECT @@IDENTITY
** you may want to consider using this with transactions eg.
$dataobject->query('BEGIN') and $dataobject->query('COMMIT')
to ensure thread safety. (Markus Wolff)
- DB_DataObject_Cast - a experimental generic casting feature for assigning variables
* Common usages:
// blobs
$dataObject->someblobfield = DB_DataObject_Cast::blob(file_get_contents('xxx.jpg'));
$dataObject->someblobfield = DB_DataObject_Cast::string('xxxxx');
// dates?
$dataObject->at_date = DB_DataObject_Cast::date('12/12/2000'); //Human
$dataObject->at_date = DB_DataObject_Cast::date('2000-12-12'); //ISO
$dataObject->at_date = DB_DataObject_Cast::date(2000,12,12); //YYYY,dd,mm
$d2 = DB_DataObject_Cast::date(); // today!
// some addition
$dataObject->expires = DB_DataObject_Cast::date($d1->year, $d1->month+30, $d1->day+30);
// raw sql????
$dataObject->maxids = DB_DataObject_Cast::sql('max(id) > 12');
$dataObject->emptyfield = DB_DataObject_Cast::sql('NULL');
You can extend this object to provide your own datatypes..
- PHP5 Compatibility
Return values should work with PHP5beta2
Overload (__call) should work with PHP5beta2- table() and keys() Allow setting of data with a value
(so you can use dataobjects without extended instances.)
- factory/ getLinks and autoloading
Will use the full path location in config to check if the file exists,
after that it is included without warnings turned off..
(autoloading check to see if class exists first - should be faster)Fixes:
- Validate is an optional dependency (Arnaud Limbourg)
- Bug #228, BOOL type on postgresql correctly quoted.
- Bug #133, No error is raised when calling fetch with no data returned,
just produces a debug warning now
- Bug #172,Turning of Overload
If you define DB_DATAOBJECT_NO_OVERLOAD to any value, then dataobjects will not be overloaded,
This is usefull when working with ZendOptimizer, that may segfault with certain optimization levels - 1.2 (stable, 2003-08-25)
Release notes
License: PHP License
New Features:
- A Number of the private methods have been made Public,
changes:
- _get_table() = table()
- _get_keys() = keys()
additions
- tableName() = returns or assign the table name
- database() = returns or assign the database name
changes by Markus Wolff
POSSIBLE BC IMPLICATIONS: If you define _get_table or _get_keys manually (rather than using the ini file)
you should rename your methods table() and keys()
Fixes:
- Generator is now more tollerant of editors that alter the spaces before
the autocode markers ### (Andreas Ljunggren) - 1.1 (stable, 2003-08-09)
Release notes
License: PHP License
Bug Fixes
- limit argument testing now accepts "10" (a string with an integer
in it, as a valid argument) (Demian Turner)
New Features
- JoinAdd has additional Argument $joinCol, so you can specify
multiple targets links of the same table, eg. user->friend,
user->parent both connect to the user table.. (Andy Crain) - 1.0.2 (stable, 2003-07-31)
Release notes
License: PHP License
Minor Bugfix Release
- Fix static Get call, case sensitivity properly. - 1.0.1 (stable, 2003-07-18)
Release notes
License: PHP License
Minor Bugfix Release
- Fix Select defaults back to * after an fetch
- Fix Update with NULL values - 1.0 (stable, 2003-07-16)
Release notes
License: PHP License
- Gold 1.0 Release.. - final stable release in this series. Future versions
(eg. 1.1.*(dev)->1.2.*(release)) series will be generally API compatible,
however is likely to use MDB rather than DB.
- fix bug #23983 - argument checking on whereAdd, orderBy, limit and a few others
(Mike Carter)
- fix bug with cache clearing not working with staticGet and update/insert
- null comparison for $object->var = 'null' will generate IS NULL query
- null insert/update works when using 'null' as a value.
- getLinks returns true on success
- getLinks now has a formatter eg. '_%s' is default to allow user to define the
format of variables to assign child objects to.
- generator uses UNIQUE only if no primary/autoincrement type field is found.
- added support for $object->having('sum(value) > 10');
- fetch will remove some query lines (so if you want to see how the query was built
you will have to print_r() the object after find(), and before fetch(), or just use
debugLevel(1)
- overload calls from setFrom and toArray do method checks, as overload is still proving to
be a little unstable especially with Zend Encoder. (Note: if DataObjects causes crashes
, remove the overload code at the bottom of DataObjects.php) - 0.19 (stable, 2003-05-22)
Release notes
License: PHP License
- fix bug #23712 - deleting (and probably updating as well) an object while
being fetched. (Michael McCarthy for spotting this)
- fix generator overwriting code when file was edited in a Windows editor
(Robert Janeczek)
- validation will not produce errors on empty numeric data by default.
- overload extension enabled to relay setFrom and toArray calls to get*, set*
methods, which are predefined as
getXXX = returns $object->XXX
setXXX($V) = returns true (or an error string if you create your own)
(only affects php-4.3.2RC2 or later..)
- selectAs($dataobject,'prefix_%s') to help control the way join queries return
their data * doing selectAs() - clears the select and sets it to table.id as id ... etc.
- joinAdd has 2 extra optional arguments
$dataObject->joinAdd($otherDataObject, $joinType, $joinAs)
existing behaviour (INNER Joins) is default (eg. no value)
$joinType can be:
INNER,LEFT,RIGHT = eg. INNER JOIN ... etc.
'' = just added with a , and the link conditions are added with a WHERE statement.
$joinAs can be used to name the table differently in the join eg.
SELECT .. FROM person INNER JOIN address as homeaddress ......
- setFrom has an extra optional parameter for formating: eg.
$object->setFrom($_POST,'prefix_%s') would map prefix_name to $object->name
the default is '%s' which is the same as the previous behaviour
- added option dont_die (default no) to ini file
default (no) means that DataObjects will emit a PEAR_ERROR_DIE on configuration and
programming errors
true or 1 means that you can write a PEAR::error handler to catch the errors and
display a nice it's not working message - 0.18 (stable, 2003-04-17)
Release notes
License: PHP License
- add table prefix to autobuilt queries (assist in ambigous querys for joins)
(Daniel Von Fange)
- change update and delete to return the number of rows affected or false on failure
- various code tidy ups - standards etc. (Arnaud Limbourg)
- fix generator for postgres and mdb - use unique keys and look for 'nextval' as keys.
- fix no key insert bug (G Moxley Kempster)
- fix empty table bug in generator (Robert Janeczek)
- staticAutoloadTable(), now handles parse errors in included files alot cleaner
- added dependancies on PHP4.3, DB 1.3 and Validate (although Validate is optional)
- added table prefix to count query (Richard Wallace) - 0.17 (stable, 2003-03-12)
Release notes
License: PHP License
- Usual post feature bug fix release
- fix loading of links.ini for joinAdd, getLinks etc. (Geoff Hopson) - 0.16 (stable, 2003-03-11)
Release notes
License: PHP License
- replaced config storage - should improve performance
- removed production option (not required due to improved config storage)
- bugfix : added checks for is_array on ignore_sequence_keys (Hermen Heinen)
- add toArray($format) which supports sprintf to enable easy integration with
Quickforms etc. (Demian Turner)
- add optional dataobject as variable to update(), so you can update will
only create an update based on what has changed. (Geoff Hopson)
- add join condition to count() (Daniel Von Fange)
- modify limit() to work with postgresql and make it emit a fatal error if you
try this on databases that do not directly support limit queries. (Geoff Hopson)
* I'm open on better ideas for this - probably wrapping the find() select call - 0.15 (stable, 2003-02-25)
Release notes
License: PHP License
- modified find(true), so that it calls fetch rather than fetchrow
so that overriding fetch will affect get() calls.
(probably depreciates fetchrow now .. shout if anyone is using it)
- added escape method as a quasi quote wrapper into pear::DB - useful for
building your own queries - eg. like requests.. (does not add quotes)
- fixed bug with delete not using primary key if it was set. (Ian Eure) - 0.14 (stable, 2003-02-06)
Release notes
License: PHP License
- added get affected rows to update/insert/delete
they will return false if no data is affected and set
the Objects lastError value.
Note: databases that do not support affectedRows(), will always
return false. - 0.13 (stable, 2003-01-23)
Release notes
License: PHP License
- bug fix release - debug_ignore_updates worked in reverse.. (Alexander Mazurov)
- 0.12 (stable, 2003-01-22)
Release notes
License: PHP License
- Usual post release bug fix.
- fixes *.links.ini incorrectly using *.links (Damian Turner)
- Adds the ability to get PEAR Connection and result objects
getDatabaseConnection() and getDatabaseResult() (jason rust) - 0.11 (stable, 2003-01-21)
Release notes
License: PHP License
- changed connecition and result caching to use global private variable, rather
than getStaticProperty
- results objects are not stored on insert/update/delete (speed increase
on large inserts can be as much as 10x faster)
- bug fix - Checks that primary keys are integers (Anthony Juou)
- typo on No data returned warning
- unit tests in CVS
- new configuration option for whether to use insert id's and sequences.
- Generator no creates boolean bit (mitchell perilstein) - 0.10 (stable, 2002-12-09)
Release notes
License: PHP License
- bug fix - Generator incorrectly set _database, causing generation of database.ini files to fail
- change addslashes to PEAR::DB::quote()
- generator now only replaces DB_DataObjects with extends variable if set,
you can use generator_rewrite_class to set what is a valid replacement. - 0.9 (stable, 2002-12-06)
Release notes
License: PHP License
- bug fix release - dsn was not set correctly
- 0.8 (stable, 2002-12-05)
Release notes
License: PHP License
- changed to stable status as it appears to be pretty stable now.
- update and insert now return FALSE on error conditions (Peter Gebauer)
which can be checked using === FALSE, and the error obtained using $object->_lastError
- delete will only use primary keys if they are set, otherwise it will use all object
variables to build the condition. (Daniel Ferreira)
- Added derivedHookFunctions(), and derivedHookVar() to enable extensions to generator to
make user defined methods. (Michael Lund Rasmussen)
- support for INT4, BPCHAR, TIMESTAMPTZ and postres Primary keys (Xavier)
- better PEAR CS complience (tabs and TRUE -> true), removed short open tags in generator (Thomas Volkmar Worm)
- experimental addJoin method (Stijn de Reede)
- Allow active options array (eg. dynamic changing of database config) (Sergey Lipnevich) - 0.6 (beta, 2002-09-10)
Release notes
License: PHP License
- bug fix release on insert (broke due to compatibility fixes)
- 0.5 (beta, 2002-09-07)
Release notes
License: PHP License
- fixed database.links.ini file loading in wrong location (Jens Fischer)
- fixed type on extends (Jens Fischer)
- added __clone() support to pre- php5 classes
- added multiple linked table support - 0.4 (beta, 2002-08-21)
Release notes
License: PHP License
- Bug fix release - createTables used wrong argv
- 0.3 (beta, 2002-08-16)
Release notes
License: PHP License
- Fixed Globals requirement in createTables,
- 0.2 (beta, 2002-07-12)
Release notes
License: PHP License
Removed list method, First upload as pear package. - Documentation now in PEAR Manual
Bugs
| ID | Status | Type | Version | Date | Summary |
|---|---|---|---|---|---|
| #20 | Closed | Bug | 2003-09-18 | regexp bug in Generator.php | |
| #33 | No Feedback | Bug | 2003-09-24 | createTables.php chokes on entries with the ! character | |
| #35 | Bogus | Bug | 2003-09-25 | subsequent get() calls only update 'id' field | |
| #43 | Closed | Bug | 2003-09-28 | Table names need quoting. | |
| #47 | Closed | Bug | 2003-09-29 | Unexpected change of method name DB_DataObject::table() | |
| #56 | Closed | Bug | 2003-10-02 | createTables.php doesn't handle bytea columns | |
| #57 | Closed | Bug | 2003-10-02 | Auto Sequence problems with PostgreSql | |
| #94 | Bogus | Bug | 2003-10-13 | segmentation fault when connecting to database | |
| #133 | Closed | Bug | 2003-10-21 | debug notices for debugging not existant variables | |
| #172 | Closed | Bug | 2003-10-30 | Problem with overload() | |
| #228 | Closed | Bug | 2003-11-12 | insert() fails on postgres boolean data type | |
| #257 | No Feedback | Bug | 2003-11-16 | Tables with multiple primary keys not handled correctly | |
| #262 | Bogus | Bug | 2003-11-16 | $table->get() should allow empty parameters | |
| #274 | Bogus | Bug | 2003-11-19 | insert will not set primary key value | |
| #291 | No Feedback | Bug | 2003-11-24 | Auto-generated file names do not match class names | |
| #340 | Bogus | Bug | 2003-12-03 | Feature Request: Events | |
| #359 | No Feedback | Bug | 2003-12-05 | toArray doesn't return links | |
| #404 | No Feedback | Bug | 2003-12-11 | joinAdd parenthesizes nested joins incorrectly | |
| #405 | Bogus | Bug | 2003-12-11 | joining on a table with the same field name causes overwriting of values | |
| #413 | Closed | Bug | 2003-12-12 | Postgresql & interval column type | |
| #424 | Bogus | Bug | 2003-12-15 | ::limit() not limiting | |
| #452 | Bogus | Bug | 2003-12-18 | Cann't insert row into table, where key not auto_increment | |
| #467 | No Feedback | Bug | 2003-12-20 | sequences don't work by default anymore (pgsql) | |
| #473 | Closed | Bug | 2003-12-21 | A DB_Error isn't a DB_Error in function _query() | |
| #476 | Closed | Bug | 2003-12-22 | Sintaxe error | |
| #501 | Closed | Bug | 2003-12-29 | _autoload include statement looks wrong | |
| #507 | Closed | Bug | 2003-12-31 | non-native sequences are broken | |
| #528 | Closed | Bug | 2004-01-06 | sintaxe error still wrong at CVS | |
| #532 | Closed | Bug | 2004-01-07 | insert() with key=0 | |
| #547 | Closed | Bug | 2004-01-08 | Does't work properly with primary key on two fields | |
| #595 | Closed | Bug | 2004-01-17 | Hyphens (which are valid in MySQL table names) aren't valid in PHP Classes | |
| #602 | Bogus | Bug | 2004-01-20 | set_error_handler Cause error | |
| #603 | Closed | Bug | 2004-01-20 | add BC option for clear _query on fetch()/find() | |
| #605 | No Feedback | Bug | 2004-01-21 | when sequence_$table used insert returns 1 | |
| #611 | Closed | Bug | 2004-01-22 | DB_DATAOBJECT_NO_OVERLOAD comment has wrong syntax | |
| #612 | Closed | Bug | 2004-01-22 | databaseStructure() says it's static, but it may not be | |
| #620 | Closed | Bug | 2004-01-24 | limit: No Valid Arguments (for float, double and real) | |
| #630 | Closed | Bug | 2004-01-27 | YEAR and TIMESTAMP type in mysql database not handled correctly | |
| #642 | Closed | Bug | 2004-01-29 | can't perform count if there's an null field | |
| #644 | Closed | Bug | 2004-01-29 | line 149 DataObject.php setStaticProperty | |
| #647 | Closed | Bug | 2004-01-31 | debug is always called staticlly | |
| #713 | No Feedback | Bug | 2004-02-09 | toArray() ignores joinAdd() | |
| #730 | Closed | Bug | 2004-02-10 | PostgreSQL 'double precision' type is handled incorrectly | |
| #743 | Bogus | Bug | 2004-02-12 | installation broken | |
| #750 | Closed | Bug | 2004-02-13 | possibility to do distinct for select and count | |
| #753 | No Feedback | Bug | 2004-02-13 | mulitple inserts using lots of memory | |
| #803 | Closed | Bug | 2004-02-19 | quote entities should be quote identifiers | |
| #805 | Suspended | Bug | 2004-02-19 | CVS version of DB_DataObject causes some find() fetch() loops to stop short | |
| #819 | No Feedback | Bug | 2004-02-21 | Call to undefined function: quoteentity() | |
| #820 | Closed | Bug | 2004-02-21 | not reading configuration in insert() function | |
| #854 | Closed | Bug | 2004-02-25 | NOTICE: undefined variable $dbtype at line 1974 | |
| #865 | Closed | Bug | 2004-02-26 | PEAR QA: improvement for get_class()-usage | |
| #910 | Closed | Bug | 2004-02-26 | PEAR QA: improvement for get_class()-usage | |
| #922 | Closed | Bug | 2004-02-27 | Primary keys are assumed to be sequences erroneously | |
| #940 | Closed | Bug | 2004-03-03 | whereAdd should return whereAdd string | |
| #957 | No Feedback | Bug | 2004-03-06 | Dataobject find doesn't work with Zend Optimizer (mmcache to) | |
| #958 | Closed | Bug | 2004-03-06 | debugLevel return value | |
| #970 | Closed | Bug | 2004-03-08 | "No Data specifed for query" with postgresql and unique constraints | |
| #971 | No Feedback | Bug | 2004-03-08 | debug improvement | |
| #972 | Closed | Bug | 2004-03-08 | latest cvs notice | |
| #973 | Closed | Bug | 2004-03-08 | undefined index | |
| #1000 | Closed | Bug | 2004-03-12 | Postgresql, cidr data type wrong recognized | |
| #1085 | No Feedback | Bug | 2004-03-28 | SQLite Databse name causes problèmes | |
| #1094 | Closed | Bug | 2004-03-30 | whereAdd() method of DB_DataObject | |
| #1127 | Bogus | Bug | 2004-04-04 | setFrom is slow | |
| #1135 | No Feedback | Bug | 2004-04-05 | SQLite can handle LIMIT, stop exception | |
| #1173 | No Feedback | Bug | 2004-04-10 | DSN problens with % caracter | |
| #1205 | Closed | Bug | 2004-04-14 | quoteEntity() problems | |
| #1219 | Bogus | Bug | 2004-04-16 | Apache will die on ->find() | |
| #1293 | Closed | Bug | 2004-04-27 | DB_DataObject relies on PHP4.2 function is_a() but lists dependencies of PHP4.1 | |
| #1315 | No Feedback | Bug | 2004-04-29 | $object->toArray not "arrayizing" all elements | |
| #1347 | Closed | Bug | 2004-05-05 | __clone does not work in DataObject - use clone $obj instead | |
| #1354 | Closed | Bug | 2004-05-06 | Undefined property: stdClass::$name and ::$type in Generator.php (with SQLite) | |
| #1356 | Closed | Bug | 2004-05-06 | DataObject table prefix | |
| #1462 | Closed | Bug | 2004-05-21 | Using __clone in function count leads to an error | |
| #1548 | Closed | Bug | 2004-06-02 | count() fails if $countWhat param is used | |
| #1559 | Closed | Bug | 2004-06-04 | Release 1.6.1 wrong dep on PHP version | |
| #1579 | No Feedback | Bug | 2004-06-08 | Possible error with two table links and count request | |
| #1595 | Closed | Bug | 2004-06-09 | options generator_include_regex & generator_exclude_regex | |
| #1631 | Bogus | Bug | 2004-06-14 | insert auto_increment if | |
| #1632 | Bogus | Bug | 2004-06-14 | mysql DB err (call from DB_DataObject) | |
| #1664 | Closed | Req | 2004-06-17 | Support links.ini in different location w/ patch | |
| #1697 | Closed | Bug | 2004-06-21 | createTables.php removes a line when updating a table file | |
| #1703 | Duplicate | Bug | 2004-06-22 | createTables.php failed to work | |
| #1704 | Closed | Req | 2004-06-22 | NULL values are assigned even when a field is NOT_NULL | |
| #1718 | Bogus | Bug | 2004-06-24 | DB_DataObject: Dependencies failed | |
| #1726 | Closed | Req | 2004-06-26 | ORDER BY and LIMIT not considered on DELETE | |
| #1763 | Wont fix | Req | 2004-07-01 | generated class : "?>" miss | |
| #1764 | No Feedback | Req | 2004-07-01 | _autoloadClass and PHP include_path | |
| #1778 | Closed | Req | 2004-07-02 | toArray should also get "virtual" fields | |
| #1795 | Closed | Bug | 2004-07-05 | DataObject method update() not working correctly | |
| #1828 | Closed | Req | 2004-07-08 | auto build and database schema of LDAP | |
| #1833 | Closed | Req | 2004-07-09 | links() should return array() when nothing is found | |
| #1835 | Closed | Bug | 2004-07-09 | links() should be used instead of LINKS | |
| #1873 | Suspended | Req | 2004-07-14 | DB_DataObject::Validate() incorrectly handles null values | |
| #1920 | Duplicate | Req | 2004-07-20 | setFrom is slow | |
| #1922 | Closed | Bug | 2004-07-20 | Variable not defined | |
| #1923 | Closed | Req | 2004-07-20 | DB_DataObject throwing E_NOTICE | |
| #1926 | Bogus | Bug | 2004-07-20 | DB_DataObject datetime | |
| #1935 | Closed | Bug | 2004-07-21 | Bugs when using config 'quote_identifiers = 1' | |
| #1980 | Closed | Bug | 2004-07-26 | Logic error in joinAdd method | |
| #2068 | Closed | Bug | 2004-08-05 | sequence problem when another unique index exists | |
| #2086 | Closed | Req | 2004-08-07 | [Documentation] Auto Building Views | |
| #2088 | Closed | Bug | 2004-08-07 | Use of uninitialized variables when class_prefix option is omitted | |
| #2105 | Closed | Bug | 2004-08-10 | getLink() raises an error if a foreign key field is NULL | |
| #2106 | Closed | Bug | 2004-08-10 | update() will raise error if no changes are detected | |
| #2114 | No Feedback | Bug | 2004-08-11 | DataObject ignores columns with UNIQUE contstraint | |
| #2116 | No Feedback | Bug | 2004-08-12 | $object->toArray not "arrayizing" all elements (Part 2) | |
| #2136 | Closed | Bug | 2004-08-16 | php-5.0.1 seems to break Dataobject | |
| #2138 | Suspended | Bug | 2004-08-16 | [Patch] Automatically Detect Zend Optimizer and define DB_DATAOBJECT_NO_OVERLOA | |
| #2147 | Closed | Bug | 2004-08-17 | [doc] find returns the number of FOUND rows, not FETCHED rows | |
| #2205 | Closed | Bug | 2004-08-24 | PHP 5.0.1 Breaks Dataobject | |
| #2207 | No Feedback | Bug | 2004-08-24 | joinAdd: Links don't load if isn't data table auto generated | |
| #2216 | Closed | Req | 2004-08-25 | joinAdd: JOIN ON custom conditions imposible | |
| #2222 | Closed | Req | 2004-08-26 | [DOCS] Beginning of docs uses direct instantiation | |
| #2240 | Closed | Req | 2004-08-27 | Factory Calls $this->tableName() w/o Param | |
| #2260 | Bogus | Bug | 2004-08-31 | Documentation error with fetch | |
| #2267 | Closed | Bug | 2004-09-01 | DabaOject->get() and ENUM | |
| #2273 | Bogus | Bug | 2004-09-02 | validate method calls child Validate$key | |
| #2318 | Closed | Bug | 2004-09-13 | update($obj) with no changes returns False | |
| #2319 | Closed | Bug | 2004-09-13 | joinAdd() SQL code doesn't run under Oracle 9.1 | |
| #2328 | Bogus | Bug | 2004-09-14 | Reserved Words in MySQL | |
| #2329 | Closed | Req | 2004-09-14 | Add extended multi-db support w/ patch | |
| #2330 | Closed | Bug | 2004-09-14 | Notice on line 3468 | |
| #2387 | Bogus | Bug | 2004-09-24 | generator_exclude_regex still writes matching tables | |
| #2397 | Closed | Bug | 2004-09-25 | Incorrect documentation in Generator.php | |
| #2441 | Closed | Req | 2004-10-04 | DataObject.php:3249 - echo should be removed | |
| #2519 | Closed | Bug | 2004-10-13 | check for is_bool() needed in _check_condition() | |
| #2551 | Closed | Req | 2004-10-17 | Have Generator create validate interfaces w/ patch | |
| #2565 | Closed | Bug | 2004-10-19 | Generator does not recognize oracle NUMBER type | |
| #2590 | Bogus | Bug | 2004-10-22 | Oracle fetch data [nativecode=ORA-01000: maximum open cursors exceeded] | |
| #2598 | Closed | Req | 2004-10-23 | Typo in documentation | |
| #2659 | Suspended | Bug | 2004-11-01 | Use of primary keys on update/delete | |
| #2674 | Closed | Bug | 2004-11-02 | reserved words in ini files | |
| #2702 | No Feedback | Req | 2004-11-05 | Links in multiple databases | |
| #2718 | Bogus | Bug | 2004-11-08 | ->update() method incorrectly returns false | |
| #2739 | Closed | Req | 2004-11-11 | serialize() DataObjects | |
| #2740 | Closed | Req | 2004-11-11 | Prefix for auto built file names | |
| #2759 | Duplicate | Bug | 2004-11-15 | toArray does not arrize "set" values | |
| #2778 | Closed | Bug | 2004-11-17 | createtables.php fails building for postgres views | |
| #2786 | Closed | Req | 2004-11-18 | Error on ->validate() documentation page | |
| #2788 | Wont fix | Req | 2004-11-18 | sort order ascending/descending | |
| #2912 | No Feedback | Bug | 2004-12-07 | if tables in pgsql are upper case createtables throws error | |
| #2928 | Closed | Bug | 2004-12-08 | error in ->query does not raise exception | |
| #2999 | Bogus | Bug | 2004-12-21 | DataObject fails on find | |
| #3001 | Closed | Req | 2004-12-21 | Patch for class generator to generate getters/setters on demand | |
| #3010 | Closed | Bug | 2004-12-22 | fromValue() mis-handles empty date/time strings | |
| #3013 | Suspended | Req | 2004-12-22 | Adding a table prefix for tables used by DB_DataObject | |
| #3025 | Bogus | Bug | 2004-12-23 | createTables gives an error | |
| #3045 | Bogus | Bug | 2004-12-28 | member function on a non-object in Generator.php on line 132 | |
| #3055 | No Feedback | Bug | 2004-12-29 | Don't work ->getLink(), ->getLinks() and more other in new php version 4.3.10 | |
| #3058 | Closed | Bug | 2004-12-30 | typo in getLinkArray method | |
| #3070 | Wont fix | Req | 2004-12-30 | Modify update() to allow primary key changes | |
| #3079 | Closed | Bug | 2005-01-03 | Regex error in Generator.php | |
| #3098 | Closed | Bug | 2005-01-04 | $do->_lastError not accessible through PEAR::getStaticVariable() | |
| #3109 | Bogus | Bug | 2005-01-05 | createTables.php failes | |
| #3117 | Bogus | Bug | 2005-01-05 | DB_DataObject Broken in 4.3.10? | |
| #3122 | Bogus | Bug | 2005-01-06 | Generator fails after PHP update 4.3.2->4.3.10 | |
| #3136 | Bogus | Bug | 2005-01-08 | after upgrade to 4.3.10, php segfaults when i access a DataObject attribute | |
| #3152 | Closed | Bug | 2005-01-10 | joinAdd requires join column to be in links.ini file | |
| #3173 | Closed | Req | 2005-01-12 | generator_include_regex option missing from documentation | |
| #3174 | Closed | Req | 2005-01-12 | support for native sequence ( auto_increment ) using mysql 4.1.x ( mysqli ) | |
| #3187 | Closed | Req | 2005-01-13 | Validate could be smarter with sequences | |
| #3201 | Closed | Bug | 2005-01-14 | get* and set* no longer work on private, public and protected class variables | |
| #3225 | Closed | Bug | 2005-01-18 | Doubled ini entries in generator | |
| #3255 | Feedback | Req | 2005-01-20 | Set Id for new objects | |
| #3256 | Suspended | Req | 2005-01-20 | Allow custom file and class naming conventions | |
| #3264 | Closed | Bug | 2005-01-21 | joinAdd() generates PHP notice: Undefined property: _query | |
| #3287 | Bogus | Bug | 2005-01-24 | createTables fails | |
| #3294 | Closed | Req | 2005-01-25 | Better data type support. | |
| #3295 | Suspended | Req | 2005-01-25 | docs need to explain how to update with multiple keys | |
| #3302 | Closed | Bug | 2005-01-26 | joinAdd in CVS not calling $obj->_connect() | |
| #3307 | Closed | Bug | 2005-01-26 | setFrom does not allow array or object values for setters | |
| #3312 | Bogus | Bug | 2005-01-27 | DO_DataPbject::fetch() crashes in command line | |
| #3320 | Bogus | Bug | 2005-01-28 | insert() does not return the ID of the inserted element | |
| #3359 | Closed | Bug | 2005-02-02 | break missing in DB_DataObject_Cast::date() | |
| #3374 | No Feedback | Bug | 2005-02-03 | Postgress in PHP | |
| #3425 | Suspended | Req | 2005-02-10 | Delete + Inner Join | |
| #3472 | Bogus | Bug | 2005-02-14 | PHP 4.3.10 causes seg fault | |
| #3540 | Closed | Bug | 2005-02-21 | Connection caching | |
| #3556 | Bogus | Bug | 2005-02-22 | fetch error message in DB_DataObject | |
| #3568 | Closed | Bug | 2005-02-23 | joinAdd cannot join to non DB_DataObject table | |
| #3584 | Closed | Req | 2005-02-24 | Cast::datetime, Cast::time | |
| #3640 | Suspended | Req | 2005-02-28 | calling serialize on the DB object causes a disconnect | |
| #3645 | Closed | Bug | 2005-02-28 | Bad implementation of clone() | |
| #3674 | Closed | Bug | 2005-03-02 | insert()/update() fails with boolean data type. Data coming from FormBuilder. | |
| #3702 | Suspended | Req | 2005-03-04 | createTables.php should allow a flag for PHP4-compatibilty | |
| #3706 | Closed | Bug | 2005-03-04 | multidatabase join support breaks postgresql join queries | |
| #3708 | Closed | Bug | 2005-03-04 | oldcontent variable is not emptied | |
| #3716 | Bogus | Bug | 2005-03-05 | DB\DataObject\Generator.php doesn't generate a proper footer | |
| #3734 | Closed | Req | 2005-03-07 | Extra ON clause with joinAdd | |
| #3761 | Closed | Bug | 2005-03-10 | Db_DataObject_Cast::dateTime fails | |
| #3763 | Closed | Bug | 2005-03-10 | DB_DataObject.php fails with exception during generation | |
| #3764 | Closed | Bug | 2005-03-10 | PostgreSQL Boolean Doesn't Work | |
| #3765 | Suspended | Req | 2005-03-10 | Database prefixes in auto generated classes | |
| #3767 | No Feedback | Bug | 2005-03-10 | no proper support for postgresql schemas | |
| #3768 | Closed | Bug | 2005-03-10 | quoteIdentifier not used correctly with database_prefix | |
| #3773 | Suspended | Req | 2005-03-11 | Re: [PEAR-BUG] Bug #3773 [Ctl->Fbk]: PostgreSQL SERIAL type not supported | |
| #3783 | Closed | Req | 2005-03-11 | Wrong count() when using groupBy | |
| #3812 | Suspended | Req | 2005-03-14 | DB_Dataobject casts every column to string datatype | |
| #3814 | No Feedback | Bug | 2005-03-14 | Notice: Undefined index: realtor in D:\php-4\pear\DB\DataObject.php on line1900 | |
| #3829 | Closed | Bug | 2005-03-15 | undefined database_prefix on line 2849 | |
| #3831 | Closed | Req | 2005-03-15 | createTables for oci8 | |
| #3898 | Closed | Bug | 2005-03-21 | $table->count() returns incorrect result | |
| #3924 | Closed | Bug | 2005-03-22 | mysqli does not escape insert(), mysql does | |
| #3943 | Closed | Bug | 2005-03-24 | boolean data type broken for PostgreSQL | |
| #3944 | Closed | Req | 2005-03-24 | Informix Autoincrement | |
| #3979 | Closed | Bug | 2005-03-28 | find() always returns 1 | |
| #3982 | Suspended | Req | 2005-03-28 | enhancing the schema | |
| #3983 | Wont fix | Req | 2005-03-28 | "rewinding" | |
| #4000 | Closed | Bug | 2005-03-30 | phpversion() compare doesn't match for custom builds | |
| #4019 | Closed | Bug | 2005-03-31 | Redeclaration of members with a different case | |
| #4037 | No Feedback | Bug | 2005-04-03 | SetFrom cutoff russian letters | |
| #4040 | Closed | Bug | 2005-04-03 | Table containing column 'link' or 'links' is not supported | |
| #4096 | Closed | Bug | 2005-04-07 | Security: Database connection errors report password to the browser | |
| #4135 | Closed | Bug | 2005-04-13 | _build_condition() bug? | |
| #4136 | Closed | Req | 2005-04-13 | Automatic link generation | |
| #4152 | Duplicate | Bug | 2005-04-15 | Boolean value to Tiny-int | |
| #4168 | Closed | Bug | 2005-04-16 | _connect() missing return statement, performance hit | |
| #4182 | Closed | Req | 2005-04-19 | mysql blob support | |
| #4188 | Closed | Bug | 2005-04-20 | update docs need clone() adding | |
| #4193 | Closed | Bug | 2005-04-20 | sqlite dsn causes invalid _database | |
| #4203 | Closed | Bug | 2005-04-22 | Update to DB::DataObject 1.7.13 breaks database.ini file generation on postgres | |
| #4235 | Closed | Bug | 2005-04-27 | the createTables.php script does not reconize the primary key with postgreSQL | |
| #4266 | Closed | Req | 2005-05-03 | Allow joins with multiple keys | |
| #4287 | Bogus | Bug | 2005-05-05 | Same-named tables from different databases don't generate different files | |
| #4288 | Closed | Bug | 2005-05-05 | With PostgreSQL databases ->insert() gets its sequence from the wrong table. | |
| #4289 | Feedback | Req | 2005-05-05 | Can't automatically link tables from different databases | |
| #4306 | Suspended | Req | 2005-05-09 | No way to specify logic condition in nested joinAdd and whereAdd | |
| #4312 | No Feedback | Bug | 2005-05-10 | Columnnames with capitals don't link correct in pgsql | |
| #4323 | No Feedback | Bug | 2005-05-10 | DB Object Seems to Forget DSN Information | |
| #4324 | Bogus | Bug | 2005-05-11 | firebird 1.51 table names are padded to fixed length with trailing blanks | |
| #4380 | Closed | Bug | 2005-05-18 | Documentation bug: generator_class_rewrite setting | |
| #4383 | Closed | Bug | 2005-05-18 | Generator expects error but doesn't call expectError() | |
| #4384 | No Feedback | Bug | 2005-05-18 | delete(DB_DATAOBJECT_WHEREADD_ONLY) also takes "Order by" as part of delete que | |
| #4431 | Closed | Req | 2005-05-25 | add an option to toArray() to avoid empty fields | |
| #4472 | Wont fix | Req | 2005-05-30 | Added New Features for setFrom and _buildConditions, find for cross databases | |
| #4518 | Closed | Req | 2005-06-02 | escape method in cvs is broken for MDB2 | |
| #4535 | Closed | Bug | 2005-06-06 | postgresql's boolean still broken | |
| #4552 | Closed | Bug | 2005-06-08 | LOCK TABLES WRITE causes notices | |
| #4567 | Closed | Bug | 2005-06-10 | count() | |
| #4601 | Closed | Bug | 2005-06-15 | using isfile instead of is_file | |
| #4629 | Bogus | Req | 2005-06-19 | new folder organisation for dbo classes and extended table feature | |
| #4646 | No Feedback | Bug | 2005-06-20 | Portability Does not Work Even though the example.ini demonstrates it. | |
| #4672 | Closed | Bug | 2005-06-24 | Commit always returning true | |
| #4713 | Suspended | Req | 2005-06-29 | builde sql use prepare feature | |
| #4715 | Closed | Bug | 2005-06-30 | $key_col not assigned when using 'DISTINCT' count | |
| #4724 | Bogus | Bug | 2005-07-01 | memory leak when using function query with DB_Dataobject | |
| #4760 | Closed | Bug | 2005-07-06 | DB_DataObject_Cast fails on blob insert. | |
| #4767 | Closed | Bug | 2005-07-07 | DB/DataObject.php makes call to non-existent php_error(...) function. | |
| #4824 | Feedback | Req | 2005-07-13 | Auto-validate field length | |
| #4827 | No Feedback | Bug | 2005-07-13 | Validation methods don't use correct capitalization | |
| #4834 | Closed | Req | 2005-07-14 | Lowercase db_dataobject_cast breaks autoload logic /w patch | |
| #4871 | Closed | Bug | 2005-07-20 | notice thrown | |
| #4894 | Closed | Req | 2005-07-22 | validate expression | |
| #4900 | Closed | Bug | 2005-07-23 | storing connection | |
| #4904 | Wont fix | Req | 2005-07-24 | boolean issue - in combination with DB_DataObject_Formbuilder | |
| #4919 | Closed | Bug | 2005-07-26 | ->update sets numeric null cols to zero | |
| #4938 | Closed | Bug | 2005-07-28 | MS SQL Collumn type 'money' handled incorrectly | |
| #4968 | Closed | Req | 2005-08-02 | count() doesn't work after setFetchMode(DB_FETCHMODE_ASSOC) | |
| #4974 | Bogus | Req | 2005-08-02 | factory() should return by reference | |
| #5036 | Closed | Bug | 2005-08-09 | Generator error with database_XXX in .ini file | |
| #5065 | Closed | Bug | 2005-08-11 | return type is not integer | |
| #5118 | Closed | Bug | 2005-08-16 | Documentation for method update is missing another possible input parameter | |
| #5146 | Closed | Req | 2005-08-18 | Allow arg for createTables.php for php4 compat | |
| #5222 | Closed | Bug | 2005-08-27 | error on page? | |
| #5235 | No Feedback | Bug | 2005-08-29 | crossLinkExtraFields triggers update instead of insert | |
| #5247 | Feedback | Req | 2005-08-30 | User editable primary keys | |
| #5262 | No Feedback | Bug | 2005-09-01 | Error with oracle dates | |
| #5264 | Closed | Bug | 2005-09-01 | MDB2 integration needs minor touch-ups | |
| #5299 | Bogus | Bug | 2005-09-05 | Wrong implementation of require_once(). | |
| #5307 | Suspended | Req | 2005-09-06 | Method to remove duplicate join declarations | |
| #5348 | No Feedback | Bug | 2005-09-09 | doesn't insert data without .ini configuration | |
| #5393 | Closed | Req | 2005-09-14 | Confusing (if not incorrect) key generation with unique indices | |
| #5405 | Bogus | Bug | 2005-09-14 | Primary key and postgres tables | |
| #5416 | Closed | Bug | 2005-09-15 | joinAdd(): AS definition causes error with Oracle | |
| #5435 | Closed | Bug | 2005-09-16 | get() and find(1) return "true" when numrows not supported and record not found | |
| #5484 | Suspended | Bug | 2005-09-21 | dispensing with class_prefix leads to segmentation fault | |
| #5486 | No Feedback | Bug | 2005-09-21 | DB_DataObject 'class_prefix' configuration option is mandatory | |
| #5491 | Closed | Bug | 2005-09-22 | Generator is called without proxy setting | |
| #5515 | Closed | Bug | 2005-09-25 | MDB2 Support Broken in _connect() | |
| #5604 | Closed | Bug | 2005-10-04 | DOUBLE PRECISION firebird fields not recognized by generator | |
| #5614 | Closed | Req | 2005-10-06 | Insufficient parameter checking in joinAdd() | |
| #5650 | Closed | Bug | 2005-10-10 | Connect error while using proxy and dont_die causes PHP fatal error | |
| #5656 | Closed | Bug | 2005-10-11 | toValue( boolean_column ) not works | |
| #5674 | Feedback | Req | 2005-10-12 | Error levels are confusing | |
| #5770 | Closed | Bug | 2005-10-24 | How to disable caching for object? | |
| #5790 | Open | Req | 2005-10-26 | Automatically determine insert/update for an object | |
| #5800 | Closed | Bug | 2005-10-27 | Checks privileges when retrieving tables list | |
| #5817 | Closed | Bug | 2005-10-28 | Validation fails for DB_DataObject_Cast objects | |
| #5818 | Closed | Bug | 2005-10-28 | Validation fails for field set with NULL value string 'null' | |
| #5881 | Closed | Req | 2005-11-06 | Put parens around whereAdd's if 'or' is present | |
| #5893 | Closed | Bug | 2005-11-08 | DataObject.php:2716 Only variable references should be returned by reference | |
| #5894 | Closed | Bug | 2005-11-08 | DataObject.php:2693] Only variables should be assigned by reference | |
| #5931 | No Feedback | Bug | 2005-11-10 | update fails when having multible column primary key | |
| #5972 | Duplicate | Bug | 2005-11-15 | require 'DB.php' in generator.php when using multiple databases | |
| #5997 | Wont fix | Req | 2005-11-17 | getlinks on multible column keys | |
| #6016 | Duplicate | Bug | 2005-11-20 | Generated classes violate coding standart | |
| #6153 | Closed | Req | 2005-12-05 | class_exists() in DB_DataObject::factory() method | |
| #6202 | Open | Doc | 2005-12-08 | getLinkArray() missing | |
| #6247 | Closed | Bug | 2005-12-14 | DB_DataObjects not freeing memory after running through all records | |
| #6258 | Bogus | Bug | 2005-12-16 | createtable.php not fully working | |
| #6264 | Feedback | Req | 2005-12-16 | Find() clears all variables, also when overriding in a superclass | |
| #6291 | Closed | Bug | 2005-12-19 | Caches arn't cleared correctly | |
| #6308 | Bogus | Bug | 2005-12-20 | Can't update with decimal/float values? | |
| #6313 | Closed | Bug | 2005-12-21 | MDB2 related fixes | |
| #6320 | Closed | Bug | 2005-12-21 | Memory leak due to staticGet not calling free. | |
| #6382 | Feedback | Req | 2005-12-31 | Allow for DB_DataObject extensions | |
| #6431 | Wont fix | Req | 2006-01-06 | Adding an array with field details for generated DataObjects | |
| #6442 | Closed | Bug | 2006-01-07 | Validate null value DB_DataObject_Cast problem | |
| #6458 | Closed | Bug | 2006-01-10 | staticGet cache is never cleared | |
| #6492 | Feedback | Req | 2006-01-14 | UTF8 encoded Database data | |
| #6534 | Bogus | Req | 2006-01-19 | Databse column in queries should be quoted in SQL statements | |
| #6543 | Closed | Bug | 2006-01-20 | createTables.php breaks between 1.8.0 and 1.8.1 | |
| #6555 | Suspended | Req | 2006-01-22 | Can't update register with id 0 | |
| #6694 | Bogus | Bug | 1.8.2 | 2006-02-04 | ->find() for simple tables generates bad SQL |
| #6700 | Wont fix | Req | 1.8.2 | 2006-02-05 | Naming Convention For Table Fields (Class Properties) |
| #6708 | Bogus | Bug | 1.8.2 | 2006-02-06 | Null columns not working with int type in mysql |
| #6772 | Closed | Bug | 1.8.2 | 2006-02-13 | Postgres REAL (in database as float4) field is not supported by generator |
| #6777 | Bogus | Bug | 1.8.2 | 2006-02-14 | nativecode=1054 ** Unknown column |
| #6790 | No Feedback | Bug | 1.8.2 | 2006-02-15 | ignore_sequence_keys = ALL is ignored |
| #6841 | Suspended | Bug | 1.8.2 | 2006-02-20 | factory() shuld by static |
| #6856 | Closed | Bug | 1.8.2 | 2006-02-21 | Don't rely on presence of database.ini |
| #6928 | Closed | Bug | 1.8.2 | 2006-02-24 | Joins inside non-default database fail |
| #6946 | Closed | Doc | 1.8.2 | 2006-02-27 | Mysqli SSL Documentation Request |
| #6953 | No Feedback | Bug | 1.8.2 | 2006-02-27 | toArray() problem |
| #7005 | Bogus | Bug | 1.8.3 | 2006-03-03 | class_prefix will be ignored |
| #7006 | Closed | Bug | 1.8.3 | 2006-03-03 | links() does not find *.links.ini because of missing connection |
| #7012 | Closed | Bug | 1.8.3 | 2006-03-03 | empty database added to join ON clause |
| #7078 | No Feedback | Req | 1.8.4 | 2006-03-09 | return numrows on $p->query($query); |
| #7157 | Closed | Bug | 1.8.4 | 2006-03-18 | __autoload not called for getLink() |
| #7250 | Duplicate | Bug | 1.8.4 | 2006-03-29 | DBDO Generator doesn't close PHP of generated classes |
| #7260 | Suspended | Bug | 1.8.4 | 2006-03-30 | mysql5 causes problems with UNIQUE fields |
| #7353 | Closed | Bug | 1.8.4 | 2006-04-09 | Boolean 'true' NOT properly evaluated |
| #7370 | Duplicate | Bug | 1.8.4 | 2006-04-11 | Bug 6953 not solved yet |
| #7409 | Closed | Bug | 1.8.4 | 2006-04-17 | DB_DataObject ibase |
| #7467 | No Feedback | Bug | 1.8.4 | 2006-04-24 | Emulated limit support |
| #7471 | Closed | Bug | 2006-04-24 | Return type of DB_DataObject::toArray() incorrect. | |
| #7488 | Closed | Bug | 2006-04-25 | Example has error in message in it | |
| #7590 | Feedback | Req | 1.8.4 | 2006-05-09 | UNIONS |
| #7641 | Bogus | Bug | 1.8.4 | 2006-05-16 | update |
| #7669 | Bogus | Req | 1.8.4 | 2006-05-19 | xscript XSS |
| #7702 | Closed | Bug | 1.8.4 | 2006-05-22 | Calling getLink /getLinks() causes memory leak |
| #7788 | Bogus | Bug | 1.8.4 | 2006-06-01 | available fields not accurate when using custom query |
| #7792 | Closed | Bug | CVS | 2006-06-02 | Generator.php doesn't handle several postgresql array type columns |
| #7949 | Suspended | Req | 1.8.4 | 2006-06-20 | ability to select a schema with Generator |
| #8092 | Suspended | Req | 2006-06-30 | The fourth parameter of joinAdd() (DB_DataObject) | |
| #8094 | Bogus | Req | 1.8.4 | 2006-06-30 | Reserved words need to be escaped when used as column names |
| #8115 | No Feedback | Bug | 1.8.4 | 2006-07-04 | DB_DataObject with generator_no_ini = yes wrong sequenceKey |
| #8122 | No Feedback | Req | 1.8.4 | 2006-07-05 | (Patch) Typo in Generator.php leads to wrong sequence key |
| #8173 | No Feedback | Bug | 1.8.4 | 2006-07-10 | joinAdd() dosn't work |
| #8179 | No Feedback | Bug | 1.8.4 | 2006-07-11 | DB_DataObject ibase |
| #8209 | Closed | Doc | 1.8.4 | 2006-07-13 | Upgrade from 1.8.3 to 1.8.4 breaks joins |
| #8218 | Closed | Bug | 1.8.4 | 2006-07-14 | NOT NULL/NULL problem with DB_DataObject_Generator |
| #8234 | Closed | Bug | 2006-07-17 | Resulting SQL wrong | |
| #8261 | Bogus | Req | 1.8.4 | 2006-07-20 | Using the NOW() function |
| #8363 | Bogus | Bug | 1.7.6 | 2006-08-04 | Fields "enter" and "frompage" are not available in mysql |
| #8627 | Closed | Bug | 1.8.4 | 2006-09-03 | debug mode breaks next header() calls |
| #8628 | Closed | Bug | 1.8.4 | 2006-09-04 | tableInfo with MDB2 |
| #8736 | Closed | Bug | 1.8.4 | 2006-09-19 | Generator : auto_increment flag searched in the wrong place with MDB2 mysqli |
| #8777 | Wont fix | Bug | CVS | 2006-09-24 | Connection error should not force PEAR_ERROR_DIE |
| #8801 | Bogus | Bug | 1.8.4 | 2006-09-27 | PHP5 get/set warning triggering for internal get/set calls |
| #8803 | No Feedback | Bug | 1.8.4 | 2006-09-27 | next sequence id and unique filed |
| #8805 | Bogus | Bug | 1.8.4 | 2006-09-27 | Inconsistent Line Endings |
| #8876 | Closed | Bug | 1.8.4 | 2006-10-06 | Oracle session persist when using count() on an DB_DataObject instance |
| #9076 | Open | Doc | 2006-10-18 | Fetch a specific row | |
| #9140 | Closed | Doc | 1.8.4 | 2006-10-23 | quote_identifiers = 1 doesn't work for orderBy |
| #9364 | Closed | Bug | 1.8.4 | 2006-11-17 | DataObjects PostgreSQL Native Sequence |
| #9389 | Suspended | Req | 1.8.4 | 2006-11-19 | JoinAdd / SelectAs overwriting each other |
| #9525 | Closed | Bug | 1.8.4 | 2006-12-01 | $o->free() not working when $o->count() |
| #9573 | Closed | Bug | 1.8.4 | 2006-12-07 | Improper handling of 'Null' string value |
| #9609 | Closed | Bug | 1.8.4 | 2006-12-13 | Generator.php Bug |
| #9625 | Closed | Bug | 2006-12-15 | Inserts doesn't work with MDB2 mssql driver | |
| #9628 | Closed | Bug | 1.8.5 | 2006-12-15 | bug fix |
| #9644 | Closed | Bug | 1.8.5 | 2006-12-18 | Use of undefined constant DB_DEFAULT_MODE |
| #9658 | Closed | Bug | 1.8.5 | 2006-12-19 | Generator does not recognize mysql DECIMAL type |
| #9730 | Closed | Bug | 1.8.5 | 2007-01-04 | Quoting identifiers does not work with composite key joins |
| #9755 | Closed | Bug | 1.8.5 | 2007-01-06 | when DB connection failed, function setOption is undefined |
| #9793 | Open | Doc | 1.8.5 | 2007-01-10 | Documentation for Generator missing |
| #9794 | No Feedback | Bug | 1.8.5 | 2007-01-10 | setting options under DB_DataObject_Generator in ini doesn't work |
| #9815 | Closed | Doc | 2007-01-12 | mistake(?) in PEAR joinAdd Documentation | |
| #9834 | Closed | Bug | 1.8.5 | 2007-01-15 | SQL 2003 standards |
| #9839 | Closed | Bug | 1.8.5 | 2007-01-15 | Generator creates PHP syntax breaking code |
| #9902 | Closed | Bug | 1.8.5 | 2007-01-21 | Database connections are not stored by reference in global variable |
| #9903 | Duplicate | Bug | 1.8.5 | 2007-01-21 | Column names containing spaces are not handled properly |
| #9910 | Analyzed | Req | 1.8.5 | 2007-01-22 | Custom connection support |
| #9938 | Wont fix | Req | 1.8.5 | 2007-01-24 | Thanks! |
| #9949 | Verified | Req | 1.8.5 | 2007-01-25 | Transaction support |
| #9964 | Bogus | Bug | 1.8.5 | 2007-01-29 | Generator truncates files > 32k to zero |
| #10005 | No Feedback | Bug | 1.8.5 | 2007-02-01 | MSSQL-problem finding table with quote_identifiers = 1 |
| #10110 | Feedback | Req | 1.8.5 | 2007-02-16 | How I can select rows with "not null" values? |
| #10112 | Closed | Bug | 1.8.5 | 2007-02-16 | Generator needs to wrap table names in $__DB->quoteIdentifier() |
| #10132 | Bogus | Bug | 1.8.5 | 2007-02-20 | Bad declaration |
| #10175 | Closed | Bug | 1.8.5 | 2007-02-24 | Undefined index Notice in Generator |
| #10229 | Feedback | Req | 1.8.5 | 2007-03-01 | Improved PHP 4 handling in generator |
| #10240 | Bogus | Bug | 1.8.5 | 2007-03-02 | Composite key fix for #4266 not applied both ways |
| #10241 | Bogus | Bug | 1.8.5 | 2007-03-02 | Cascading joins when one involves composite keys fails |
| #10326 | Open | Bug | 1.8.5 | 2007-03-10 | Update on record using update($orignal) method with null values inserts 0's |
| #10454 | Closed | Bug | CVS | 2007-03-22 | options array name invalid? |
| #10531 | Closed | Bug | CVS | 2007-03-27 | The fix for bug #9628 is invalid |
| #10573 | Closed | Req | CVS | 2007-03-31 | Patch to avoid zeroing existing files during generation. |
| #10606 | No Feedback | Bug | 2007-04-04 | Fetch doesn't find data when results<limit | |
| #10858 | Open | Req | 2007-04-27 | joinAdd function | |
| #11037 | Bogus | Req | 1.8.5 | 2007-05-15 | ->query() : number of result ? |
| #11081 | Verified | Req | 2007-05-19 | Support for createTables on Postgres with views in schema | |
| #11091 | No Feedback | Bug | 1.8.5 | 2007-05-21 | quote_identifiers Config setting ignored in count |
| #11104 | Bogus | Req | 1.8.5 | 2007-05-23 | Have access to the actual SQL query performed |
| #11154 | Closed | Doc | CVS | 2007-05-26 | Incomplete documentation |
| #11483 | Closed | Bug | CVS | 2007-06-30 | DB_DataObject_Generator kills my DataobjectClass |
| #11527 | Suspended | Req | 1.8.5 | 2007-07-05 | Adding a setQuery() method |
| #11528 | Closed | Doc | 1.8.5 | 2007-07-05 | Wildcards are not escaped correctly |
| #11584 | Closed | Bug | 1.8.6 | 2007-07-11 | typo in variable name |
| #11586 | Closed | Bug | 1.8.6 | 2007-07-11 | Notice: Undefined index: class_prefix |
| #11634 | Closed | Bug | 1.8.7 | 2007-07-18 | Generator fails if dataobjects already exist |
| #11775 | Closed | Bug | 1.8.7 | 2007-08-06 | DB_DATAOBJECT_ERROR_NODATA on update due to DB_DataObject.php:615 |
| #11805 | Closed | Bug | 1.8.7 | 2007-08-09 | Typo selects wrong error-message |
| #11840 | Bogus | Bug | CVS | 2007-08-14 | Data Retrieval Failing in Certain Circumstances |
| #11852 | Bogus | Bug | 1.8.7 | 2007-08-16 | "Unable to load schema" on insert() |
| #11856 | No Feedback | Bug | 1.8.7 | 2007-08-17 | getLinks does not load links for joined tables |
| #11940 | Closed | Doc | 2007-08-30 | User note that is a documentation problem | |
| #12016 | Closed | Bug | 1.8.7 | 2007-09-10 | generator.php won't overwrite class files |
| #12025 | No Feedback | Doc | 1.8.7 | 2007-09-11 | Generator does not generate keys with quote_identifiers = 1 |
| #12097 | Duplicate | Req | 1.8.7 | 2007-09-22 | moving new clases from generator fails on Win |
| #12223 | Closed | Doc | 1.8.7 | 2007-10-11 | Example 35-1 and 35-2 are not consistent |
| #12258 | Closed | Doc | 2007-10-16 | User note that is a documentation problem | |
| #12287 | No Feedback | Bug | 1.8.7 | 2007-10-20 | Table names character problem |
| #12550 | Closed | Bug | 1.8.7 | 2007-11-29 | Updating a record to set a field null |
| #12556 | Closed | Bug | CVS | 2007-11-30 | createtable.php class_prefix not modified |
| #12558 | Closed | Bug | 1.8.7 | 2007-11-30 | createtables via generator fails due to use of rename() |
| #12683 | Closed | Doc | 2007-12-13 | User note that is a documentation problem | |
| #12694 | Verified | Doc | 1.8.7 | 2007-12-14 | $object->update($original); |
| #12858 | Closed | Bug | 1.8.7 | 2008-01-08 | Use of explicit getOne getting sequence on pgsql |
| #12986 | Bogus | Bug | 1.8.7 | 2008-01-28 | Error with transactions |
| #12993 | Closed | Bug | 1.8.7 | 2008-01-29 | Generator considers tables primary *and* alternate keys as keys |
| #13019 | No Feedback | Req | 1.8.8 | 2008-01-31 | don't install DB_DataObject_createTables.bat on Linux |
| #13117 | Bogus | Doc | 1.8.8 | 2008-02-14 | The documentation is incomplete |
| #13118 | Wont fix | Doc | 2008-02-14 | User note that is a documentation problem | |
| #13192 | Closed | Doc | 1.8.8 | 2008-02-24 | typing error in PEAR manual |
| #13394 | Closed | Bug | 1.8.8 | 2008-03-14 | "quote_identifiers_tableinfo" bug in Generator.php line 394 |
| #13423 | Bogus | Bug | 2008-03-18 | $db_dataObject nativecode=1062 | |
| #13424 | Bogus | Bug | 2008-03-18 | $db_dataObject nativecode=1062 | |
| #13524 | Closed | Doc | 2008-03-28 | User note that is a documentation problem | |
| #13652 | Bogus | Bug | 1.8.8 | 2008-04-11 | memory leak |
| #13656 | Verified | Doc | 1.8.8 | 2008-04-12 | Undocumented CONFIG var quote_identifiers_tableinfo |
| #13773 | Closed | Req | 1.8.8 | 2008-04-25 | ->delete() does not join |
| #13788 | Closed | Bug | 1.8.8 | 2008-04-28 | No tables generated using MDB2 and Oracle |
| #13789 | Closed | Bug | 1.8.8 | 2008-04-28 | Portability settings from ini file ignored in Generator |
| #13790 | Closed | Bug | 1.8.8 | 2008-04-28 | CLOB type missing from Generator |
| #13798 | Closed | Req | 1.8.8 | 2008-04-29 | Field length validation |
| #13832 | No Feedback | Bug | 1.8.8 | 2008-05-03 | Generator.php needs to quote table names |
| #13843 | Open | Req | 1.8.8 | 2008-05-06 | $_query property not properly restored in fetch() |
| #13897 | Closed | Doc | 2008-05-14 | User note that is a documentation problem | |
| #13934 | Open | Bug | 1.8.8 | 2008-05-18 | Problem with MDB2 and getListOf() |
| #13995 | Closed | Bug | CVS | 2008-05-27 | may be typo psql as pgsql |
| #14149 | No Feedback | Bug | 1.8.8 | 2008-06-16 | MDB2 driver error - on the fly mode |
| #14252 | Closed | Doc | 1.8.8 | 2008-06-28 | phpdoc comments for delete() incorrect |
| #14311 | No Feedback | Bug | 1.8.8 | 2008-07-08 | Can't use DB_DataObject without links file |
| #14456 | Duplicate | Doc | 1.8.8 | 2008-08-04 | quote_identifiers_tableinfo - needs documenting |
| #14497 | Bogus | Doc | 1.8.8 | 2008-08-13 | escape() doesn't escape % and _ |
| #14501 | Bogus | Bug | 1.8.8 | 2008-08-13 | typo in generator ingnore quote identifies option |
| #14628 | Closed | Req | 1.8.8 | 2008-09-09 | Setting charset |
| #14657 | No Feedback | Bug | 1.8.8 | 2008-09-17 | toArray broken with non UTF-8 charset data |
| #14794 | Open | Req | 1.8.8 | 2008-10-14 | UTF8 Support for MYSQL database |
| #14821 | Suspended | Req | 1.8.8 | 2008-10-18 | Generate PHPDoc comments for class variables based on DB comments |
| #14976 | Closed | Bug | 1.8.8 | 2008-11-08 | Generator adds $_database indiscriminately |
| #15066 | Closed | Bug | 1.8.8 | 2008-11-18 | MySQL Spatial Data Type support |
| #15282 | Bogus | Bug | 1.8.8 | 2008-12-09 | Undefined index error on insert/update |
| #15315 | Suspended | Bug | 1.8.8 | 2008-12-16 | DB_DataObject::getLink() ignores current object's database |
| #16250 | Wont fix | Req | 1.8.10 | 2009-05-22 | No support for fetch of row that results from INSERT ... RETURNING |
| #16259 | Closed | Req | 1.8.10 | 2009-05-25 | Bad SQL generated when calling insert on an empty data object |
| #16267 | Closed | Req | 1.8.10 | 2009-05-27 | Linking Multiple Foreign Keys |
| #16388 | Suspended | Req | 1.8.10 | 2009-06-29 | Class name equals file name |
| #16411 | Closed | Bug | 1.8.10 | 2009-07-06 | createTables.php and generator_class_rewrite |
| #16430 | Closed | Bug | 1.8.10 | 2009-07-12 | Returned object is free()'d from getLink() |
| #16519 | Bogus | Bug | 2009-08-13 | Options in DB_DataObject not passed in MDB2 if used as Driver | |
| #16708 | Open | Doc | 1.8.12 | 2009-10-17 | SequenceKey() Required When Not Using INI |
| #16867 | Closed | Doc | 1.8.12 | 2009-12-02 | PostgreSQL errors when using Native sequences |
| #17049 | Closed | Req | 1.9.3 | 2010-01-31 | Generate links.ini when using pgsql |
| #17157 | Closed | Bug | 1.9.3 | 2010-02-25 | Error in setFrom |
| #17289 | Closed | Bug | 1.9.3 | 2010-04-03 | Error in sequenceKeys() |
| #17343 | Closed | Bug | 1.9.3 | 2010-04-25 | Indentation of comments in generated class is wrong |
| #17508 | Closed | Bug | 1.9.3 | 2010-06-21 | string values not quoted in whereAddIn |
| #17554 | Closed | Bug | 1.9.4 | 2010-07-02 | Err in update when primary key = 0 |
| #17637 | Closed | Bug | 1.9.5 | 2010-07-28 | getLinks changed in 1.9.0? |
| #18146 | Open | Req | 1.9.5 | 2010-12-27 | createTable.php throws MDB2 Error: not supported" code=-6 |
| #18446 | Closed | Bug | 1.9.5 | 2011-04-14 | table(), ini-file and insert() |
| #18602 | Closed | Req | svn | 2011-06-17 | Small Optimization for DB_DataObject::fetch() |
| #18605 | Closed | Req | SVN | 2011-06-17 | Patch DB_DataObject::toArray() to sprintf only as needed |
| #18749 | Closed | Bug | 1.9.5 | 2011-08-23 | is_a() behavior changed in php 5.3.7 |
| #18767 | Closed | Bug | 1.9.6 | 2011-08-29 | hard coded path in message. |
| #18931 | Closed | Doc | 1.9.6 | 2011-10-26 | Misspelling in documentation |
| #18995 | Closed | Bug | SVN | 2011-11-14 | remove error_reporting (for PEAR QA team) |
| #19134 | Closed | Bug | 2011-12-13 | files wont write | |
| #19211 | Open | Bug | SVN | 2012-01-09 | rework unit tests |
| #19475 | Closed | Bug | 1.10.0 | 2012-06-18 | Remove extra echo statements in /DB/DataObject/Generator.php |
| #19479 | Closed | Bug | 1.10.0 | 2012-06-22 | $do->getLinks() is broken in DB_DataObject 1.10.0. |
| #19500 | Open | Req | 1.10.0 | 2012-07-10 | Add support for mssql in DB_DataObject_Cast |
| #19505 | Closed | Bug | 1.10.0 | 2012-07-11 | Upgrading from 1.7.15 to 1.10.0 causes error due to no links file |
| #19509 | Feedback | Bug | 1.10.0 | 2012-07-13 | Fatal error when switching from DB to MDB2 |
| #19518 | Feedback | Bug | Unknown | 2012-07-18 | White page after createTables.php |
| #19619 | Closed | Bug | 1.10.0 | 2012-09-27 | Internal versionnumber not updated in latest release |
| #19637 | Closed | Bug | 1.10.0 | 2012-10-07 | generator_strip_schema can be regex |
| #19638 | Bogus | Bug | 1.10.0 | 2012-10-07 | generate_links will run even if false |
| #19640 | Closed | Bug | 1.10.0 | 2012-10-07 | Comment for $_database indented wrong |
| #19642 | Open | Req | 1.10.0 | 2012-10-08 | Generator-comments is urlencode()ed if using pgsql |
| #19697 | Closed | Req | 1.10.0 | 2012-11-09 | calling str_replace unneeded uses too much memory |
| #19784 | Closed | Req | 1.10.0 | 2013-01-14 | DB dependency package is deprecated |
| #19882 | Feedback | Bug | 1.11.0 | 2013-04-03 | Corrupted archived |
| #19884 | Closed | Req | 1.11.2 | 2013-04-05 | Please provide LICENSE file |
| #19898 | Feedback | Bug | 1.11.2 | 2013-04-16 | DB_DataObject->query no table found |
| #19900 | Feedback | Bug | 1.11.2 | 2013-04-16 | Insert doesnt take into account all the fields that I am passing through |
| #19917 | Closed | Bug | 1.11.2 | 2013-04-29 | Use of variable before error checking |
| #19923 | Open | Bug | 1.11.2 | 2013-04-29 | Last error bug DB_DataObject MDB2 |
| #19924 | Open | Bug | 1.11.2 | 2013-04-30 | find() - LIMIT part is not showing in the query debug output when using MDB2 |
| #19962 | Closed | Bug | 1.11.2 | 2013-05-28 | Cannot insert or update when part of a reference in multi-key case is NULL |
| #19973 | Closed | Req | SVN | 2013-06-10 | Please, add support to start transactions with "START TRANSACTION" |
| #20149 | Closed | Bug | 1.11.2 | 2013-12-15 | Error in DataObject->free() for linked DataObjects |
| #20154 | Feedback | Req | 1.11.2 | 2013-12-23 | Generator info |
| #20291 | Closed | Bug | 1.11.3 | 2014-06-05 | Ignored in update $dao->field = 0 |
| #20536 | Closed | Bug | 1.11.4 | 2015-04-28 | generator spaces after dataobject variabeles |
| #20540 | Feedback | Req | 1.11.4 | 2015-05-04 | Generator mandatory include when extending |
| #20543 | Closed | Bug | 1.11.0 | 2015-05-05 | Php deprecated warning |
| #20570 | Feedback | Bug | 1.11.4 | 2015-07-10 | Issue with quotes |
| #20947 | Open | Bug | 2015-09-11 | _pgFieldFlags fails in postgres 9.4 with multiple schemas (fix included) | |
| #21150 | Open | Bug | 1.11.5 | 2016-11-26 | Please sign the source package |
| #23773 | Closed | Bug | 1.11.5 | 2018-10-17 | Auto-built class throws error because of static call |