1
0
mirror of https://github.com/dg/dibi.git synced 2025-08-05 05:37:39 +02:00

Merge pull request #96 from jasir/firebird-getrowcount

Firebird driver: getRowCount throws NotSupportedException
This commit is contained in:
David Grudl
2013-06-12 05:05:46 -07:00

View File

@@ -373,7 +373,7 @@ class DibiFirebirdDriver extends DibiObject implements IDibiDriver, IDibiResultD
*/
public function getRowCount()
{
return ibase_num_fields($this->resultSet);
throw new DibiNotSupportedException("Firebird/Interbase do not support returning number of rows in result set.");
}