PG-Field-Name

This commit is contained in:
Paminger
2015-05-07 08:18:55 +02:00
parent 86835040e5
commit fb3909325a
3 changed files with 37 additions and 9 deletions
+8
View File
@@ -163,6 +163,14 @@ class basis_db extends db
return pg_affected_rows($result);
}
public function db_result_seek($result=null, $offset)
{
if(is_null($result))
return pg_result_seek($this->db_result, $offset);
else
return pg_result_seek($result, $offset);
}
public function db_fetch_array($result=null)
{
if(is_null($result))