|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-12-20 16:59 UTC] alan_k@php.net
[2003-02-24 04:12 UTC] alan_k@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 08:00:01 2025 UTC |
In Generator.php: $type and $flags are only in the mysql.php wrapper. They are not in Oracle. Has anyone tested with Oracle oci8????? We are doing a project and are thinking of using the DB_DataObject class heirarchy. Will I have to redo alot to get this to work??? Roughly lines 266 on. //CODE BREAKS HERE $this->_newConfig .= "{$t->name} = $type\n"; //$this->_newConfig->setValue("/{$this->table}",$t->name, $type); // i've no idea if this will work well on other databases? // only use primary key, cause the setFrom blocks you setting all key items... if (preg_match("/primary/i",$t->flags)) { $keys_out .= "{$t->name} = $type\n"; //$this->_newConfig->setValue("/{$this->table}__keys",$t->name, $type); } }