|
From: <haw...@us...> - 2008-10-30 14:38:05
|
Revision: 206
http://pgsqlformac.svn.sourceforge.net/pgsqlformac/?rev=206&view=rev
Author: hawkmoon
Date: 2008-10-30 14:37:59 +0000 (Thu, 30 Oct 2008)
Log Message:
-----------
Resolved Bug: #1991926 - isEOF logic flawed, used submited patch.
Modified Paths:
--------------
trunk/PGSQLKit/PGSQLRecordset.m
Modified: trunk/PGSQLKit/PGSQLRecordset.m
===================================================================
--- trunk/PGSQLKit/PGSQLRecordset.m 2008-10-30 02:04:16 UTC (rev 205)
+++ trunk/PGSQLKit/PGSQLRecordset.m 2008-10-30 14:37:59 UTC (rev 206)
@@ -41,7 +41,7 @@
[columns addObject:column];
}
- if (iCols == 0)
+ if (rowCount == 0)
{
isEOF = YES;
return self;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|