From: <haw...@us...> - 2008-04-11 17:34:10
|
Revision: 192 http://pgsqlformac.svn.sourceforge.net/pgsqlformac/?rev=192&view=rev Author: hawkmoon Date: 2008-04-11 10:33:59 -0700 (Fri, 11 Apr 2008) Log Message: ----------- 8.3.1 Commit Modified Paths: -------------- trunk/PGSQLKit/PGSQLConnection.m trunk/PGSQLKit/PGSQLField.m trunk/PGSQLKit/PGSQLKit.xcodeproj/project.pbxproj trunk/PGSQLKit/PGSQLRecordset.m Modified: trunk/PGSQLKit/PGSQLConnection.m =================================================================== --- trunk/PGSQLKit/PGSQLConnection.m 2007-10-18 15:31:50 UTC (rev 191) +++ trunk/PGSQLKit/PGSQLConnection.m 2008-04-11 17:33:59 UTC (rev 192) @@ -284,9 +284,6 @@ [self appendSQLLog: [NSString stringWithFormat:@"%@\n", [sql stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]]]]; } - - - gettimeofday(&start, 0); res = PQexec(pgconn, [sql cString]); if (logInfo) Modified: trunk/PGSQLKit/PGSQLField.m =================================================================== --- trunk/PGSQLKit/PGSQLField.m 2007-10-18 15:31:50 UTC (rev 191) +++ trunk/PGSQLKit/PGSQLField.m 2008-04-11 17:33:59 UTC (rev 192) @@ -123,6 +123,7 @@ if (data != nil) { return ([data bytes] == 't'); } + return NO; } Modified: trunk/PGSQLKit/PGSQLKit.xcodeproj/project.pbxproj =================================================================== --- trunk/PGSQLKit/PGSQLKit.xcodeproj/project.pbxproj 2007-10-18 15:31:50 UTC (rev 191) +++ trunk/PGSQLKit/PGSQLKit.xcodeproj/project.pbxproj 2008-04-11 17:33:59 UTC (rev 192) @@ -219,6 +219,7 @@ 0867D690FE84028FC02AAC07 /* Project object */ = { isa = PBXProject; buildConfigurationList = 1DEB91B108733DA50010E9CD /* Build configuration list for PBXProject "PGSQLKit" */; + compatibilityVersion = "Xcode 2.4"; hasScannedForEncodings = 1; mainGroup = 0867D691FE84028FC02AAC07 /* PGSQLKit */; productRefGroup = 034768DFFF38A50411DB9C8B /* Products */; Modified: trunk/PGSQLKit/PGSQLRecordset.m =================================================================== --- trunk/PGSQLKit/PGSQLRecordset.m 2007-10-18 15:31:50 UTC (rev 191) +++ trunk/PGSQLKit/PGSQLRecordset.m 2008-04-11 17:33:59 UTC (rev 192) @@ -82,7 +82,7 @@ } currentRowIndex++; - if (currentRowIndex > rowCount) { + if (currentRowIndex >= rowCount) { isEOF = true; currentRecord = nil; return nil; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |