diff options
author | Pixel <pixel@nobis-crew.org> | 2008-10-03 11:51:36 -0700 |
---|---|---|
committer | Pixel <pixel@nobis-crew.org> | 2008-10-03 11:51:36 -0700 |
commit | 833f1f6f296bf5c4fb61163388897edf79811a61 (patch) | |
tree | ec78c068e16fa6d3e19588c2e42e53700cf97033 | |
parent | 65430bb471aef183e13c05466a4068e7f1b8d8fc (diff) |
Returning nil on 'FetchRow' if we don't have any more row to return.
-rw-r--r-- | lib/SQL.cc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -101,7 +101,7 @@ AssocArray SQLConnection::fetchrow() { r[fields[i].name] = row[i] ? row[i] : "NULL"; } - nf--; + nr--; } return r; |