1
0
mirror of https://github.com/dg/dibi.git synced 2025-08-12 09:04:24 +02:00

- fixed Oracle driver

This commit is contained in:
David Grudl
2009-01-10 22:33:29 +00:00
parent c24f2b8705
commit 7c0c4db0f6
2 changed files with 2 additions and 2 deletions

View File

@@ -275,7 +275,7 @@ class DibiOracleDriver extends DibiObject implements IDibiDriver
*/
public function rowCount()
{
return oci_num_rows($this->resultSet);
throw new DibiDriverException('Row count is not available for unbuffered queries.');
}