Core/Misc: Misc fixes

This commit is contained in:
hondacrx
2018-05-23 18:16:14 -04:00
parent 43d49f9e9b
commit 913beeae69
8 changed files with 16 additions and 27 deletions
+4 -1
View File
@@ -59,7 +59,10 @@ namespace Framework.Database
public bool IsEmpty()
{
return _reader == null || !_reader.HasRows;
if (_reader == null)
return true;
return _reader.IsClosed || !_reader.HasRows;
}
public SQLFields GetFields()