1
0
mirror of https://github.com/dg/dibi.git synced 2025-08-11 16:44:30 +02:00

fetch(), fetchSingle(), getAffectedRows(), getInsertId() return NULL instead of FALSE on error (BC break)

This commit is contained in:
David Grudl
2017-06-09 18:11:51 +02:00
parent 5c514f6721
commit 7d42317279
18 changed files with 109 additions and 94 deletions

View File

@@ -25,7 +25,7 @@ class MockDriver extends Dibi\Drivers\SqlsrvDriver
function fetch($assoc)
{
return FALSE;
return NULL;
}
}