ADODB_postgres7(); } // Don't use OIDs, as they typically won't be there, and // they're not what the application wants back, anyway. function _insertid($table,$column) { return empty($table) || empty($column) ? $this->GetOne("SELECT lastval()") : $this->GetOne("SELECT currval(pg_get_serial_sequence('$table','$column'))"); } } /*-------------------------------------------------------------------------------------- Class Name: Recordset --------------------------------------------------------------------------------------*/ class ADORecordSet_postgres9 extends ADORecordSet_postgres7{ var $databaseType = "postgres9"; function ADORecordSet_postgres9($queryID,$mode=false) { $this->ADORecordSet_postgres7($queryID,$mode); } } class ADORecordSet_assoc_postgres9 extends ADORecordSet_postgres7{ var $databaseType = "postgres9"; function ADORecordSet_assoc_postgres9($queryID,$mode=false) { $this->ADORecordSet_postgres7($queryID,$mode); } } ?>