This commit is contained in:
Andreas Österreicher
2009-06-23 12:14:57 +00:00
parent b4812d98cc
commit c692c97687
4 changed files with 22 additions and 1 deletions
+8
View File
@@ -60,5 +60,13 @@ class basis_db extends db
{
return pg_last_error();
}
function db_affected_rows($result=null)
{
if(is_null($result))
return pg_affected_rows($this->db_result);
else
return pg_affected_rows($result);
}
}
?>