From: <dav...@us...> - 2008-09-05 01:06:53
|
Revision: 198 http://pgsqlformac.svn.sourceforge.net/pgsqlformac/?rev=198&view=rev Author: davydgeyl Date: 2008-09-05 01:07:00 +0000 (Fri, 05 Sep 2008) Log Message: ----------- record count is a very useful information, it must be accessible. Modified Paths: -------------- trunk/PGSQLKit/PGSQLRecordset.h trunk/PGSQLKit/PGSQLRecordset.m Modified: trunk/PGSQLKit/PGSQLRecordset.h =================================================================== --- trunk/PGSQLKit/PGSQLRecordset.h 2008-09-04 01:12:37 UTC (rev 197) +++ trunk/PGSQLKit/PGSQLRecordset.h 2008-09-05 01:07:00 UTC (rev 198) @@ -31,6 +31,8 @@ -(NSArray *)columns; +- (long)recordCount; + -(PGSQLRecord *)moveFirst; -(PGSQLRecord *)movePrevious; -(PGSQLRecord *)moveNext; Modified: trunk/PGSQLKit/PGSQLRecordset.m =================================================================== --- trunk/PGSQLKit/PGSQLRecordset.m 2008-09-04 01:12:37 UTC (rev 197) +++ trunk/PGSQLKit/PGSQLRecordset.m 2008-09-05 01:07:00 UTC (rev 198) @@ -69,6 +69,11 @@ return columns; } +- (long)recordCount +{ + return rowCount; +} + - (PGSQLRecord *)moveNext { if (rowCount == 0) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <haw...@us...> - 2008-12-01 15:18:28
|
Revision: 219 http://pgsqlformac.svn.sourceforge.net/pgsqlformac/?rev=219&view=rev Author: hawkmoon Date: 2008-12-01 15:18:26 +0000 (Mon, 01 Dec 2008) Log Message: ----------- Applied change for Tracker Item #2354094 Modified Paths: -------------- trunk/PGSQLKit/PGSQLRecordset.m Property Changed: ---------------- trunk/PGSQLKit/ trunk/PGSQLKit/PGSQLKit.xcodeproj/ Property changes on: trunk/PGSQLKit ___________________________________________________________________ Added: svn:ignore + build Property changes on: trunk/PGSQLKit/PGSQLKit.xcodeproj ___________________________________________________________________ Added: svn:ignore + arsatori.mode1v3 arsatori.pbxuser Modified: trunk/PGSQLKit/PGSQLRecordset.m =================================================================== --- trunk/PGSQLKit/PGSQLRecordset.m 2008-11-20 01:20:30 UTC (rev 218) +++ trunk/PGSQLKit/PGSQLRecordset.m 2008-12-01 15:18:26 UTC (rev 219) @@ -230,6 +230,7 @@ } } NSDictionary *result = [[[NSDictionary alloc] initWithDictionary:dict] autorelease]; + [dict release]; return result; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <haw...@us...> - 2010-03-12 03:56:39
|
Revision: 242 http://pgsqlformac.svn.sourceforge.net/pgsqlformac/?rev=242&view=rev Author: hawkmoon Date: 2010-03-12 03:56:32 +0000 (Fri, 12 Mar 2010) Log Message: ----------- 8.4.2 and changes to support PGSQLTouchKit Modified Paths: -------------- trunk/PGSQLKit/Info.plist trunk/PGSQLKit/PGSQLConnection.h trunk/PGSQLKit/PGSQLConnection.m trunk/PGSQLKit/PGSQLField.h trunk/PGSQLKit/PGSQLField.m trunk/PGSQLKit/PGSQLKit.h trunk/PGSQLKit/PGSQLKit.xcodeproj/project.pbxproj trunk/PGSQLKit/PGSQLLogin.m Added Paths: ----------- trunk/PGSQLKit/PGSQLConnectionInfo.h trunk/PGSQLKit/PGSQLConnectionInfo.m trunk/PGSQLKit/PGSQLPreparedStatement.h trunk/PGSQLKit/PGSQLPreparedStatement.m This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <haw...@us...> - 2010-03-21 20:14:48
|
Revision: 243 http://pgsqlformac.svn.sourceforge.net/pgsqlformac/?rev=243&view=rev Author: hawkmoon Date: 2010-03-21 20:14:42 +0000 (Sun, 21 Mar 2010) Log Message: ----------- Updated sources for 8.4.2c release Modified Paths: -------------- trunk/PGSQLKit/PGSQLConnection.h trunk/PGSQLKit/PGSQLConnection.m trunk/PGSQLKit/PGSQLField.h trunk/PGSQLKit/PGSQLField.m trunk/PGSQLKit/PGSQLKit.xcodeproj/project.pbxproj trunk/PGSQLKit/PGSQLRecord.h trunk/PGSQLKit/PGSQLRecord.m trunk/PGSQLKit/PGSQLRecordset.h trunk/PGSQLKit/PGSQLRecordset.m This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <haw...@us...> - 2010-06-02 20:49:30
|
Revision: 244 http://pgsqlformac.svn.sourceforge.net/pgsqlformac/?rev=244&view=rev Author: hawkmoon Date: 2010-06-02 20:49:23 +0000 (Wed, 02 Jun 2010) Log Message: ----------- Modified Paths: -------------- trunk/PGSQLKit/PGSQLConnection.h trunk/PGSQLKit/PGSQLConnection.m trunk/PGSQLKit/PGSQLLogin.m This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <haw...@us...> - 2010-06-03 20:38:35
|
Revision: 245 http://pgsqlformac.svn.sourceforge.net/pgsqlformac/?rev=245&view=rev Author: hawkmoon Date: 2010-06-03 20:38:29 +0000 (Thu, 03 Jun 2010) Log Message: ----------- Modified Paths: -------------- trunk/PGSQLKit/PGSQLConnection.h trunk/PGSQLKit/PGSQLConnection.m trunk/PGSQLKit/PGSQLField.m trunk/PGSQLKit/PGSQLKit.xcodeproj/project.pbxproj trunk/PGSQLKit/PGSQLLogin.h trunk/PGSQLKit/PGSQLRecordset.m Added Paths: ----------- trunk/PGSQLKit/icon_query_tool.icns This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <haw...@us...> - 2010-10-07 04:47:17
|
Revision: 250 http://pgsqlformac.svn.sourceforge.net/pgsqlformac/?rev=250&view=rev Author: hawkmoon Date: 2010-10-07 04:47:11 +0000 (Thu, 07 Oct 2010) Log Message: ----------- Modified Paths: -------------- trunk/PGSQLKit/Info.plist trunk/PGSQLKit/PGSQLConnection.h trunk/PGSQLKit/PGSQLConnection.m trunk/PGSQLKit/PGSQLKit.xcodeproj/project.pbxproj trunk/PGSQLKit/PGSQLLogin.m Added Paths: ----------- trunk/PGSQLKit/CHANGELOG trunk/PGSQLKit/LICENSE.txt Property Changed: ---------------- trunk/PGSQLKit/PGSQLKit.xcodeproj/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <haw...@us...> - 2011-09-18 16:23:10
|
Revision: 255 http://pgsqlformac.svn.sourceforge.net/pgsqlformac/?rev=255&view=rev Author: hawkmoon Date: 2011-09-18 16:23:03 +0000 (Sun, 18 Sep 2011) Log Message: ----------- 9.1.0 Release Commit Modified Paths: -------------- trunk/PGSQLKit/PGSQLConnection.m trunk/PGSQLKit/PGSQLField.m trunk/PGSQLKit/PGSQLKit.xcodeproj/project.pbxproj trunk/PGSQLKit/PGSQLRecordset.m Added Paths: ----------- trunk/PGSQLKit/PGSQLLoginDelegate.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <haw...@us...> - 2011-10-05 01:32:50
|
Revision: 271 http://pgsqlformac.svn.sourceforge.net/pgsqlformac/?rev=271&view=rev Author: hawkmoon Date: 2011-10-05 01:32:44 +0000 (Wed, 05 Oct 2011) Log Message: ----------- GenDB implementation changes in place and roughly tested Modified Paths: -------------- trunk/PGSQLKit/English.lproj/PGSQL Login.nib/keyedobjects.nib trunk/PGSQLKit/PGSQLColumn.h trunk/PGSQLKit/PGSQLColumn.m trunk/PGSQLKit/PGSQLConnection.h trunk/PGSQLKit/PGSQLConnection.m trunk/PGSQLKit/PGSQLField.h trunk/PGSQLKit/PGSQLField.m trunk/PGSQLKit/PGSQLKit.h trunk/PGSQLKit/PGSQLKit.xcodeproj/project.pbxproj trunk/PGSQLKit/PGSQLLogin.h trunk/PGSQLKit/PGSQLRecord.h trunk/PGSQLKit/PGSQLRecordset.h trunk/PGSQLKit/PGSQLRecordset.m Added Paths: ----------- trunk/PGSQLKit/English.lproj/PGSQL Login.nib/designable.nib trunk/PGSQLKit/GenDBColumn.h trunk/PGSQLKit/GenDBConnection.h trunk/PGSQLKit/GenDBField.h trunk/PGSQLKit/GenDBRecord.h trunk/PGSQLKit/GenDBRecordset.h trunk/PGSQLKit/PGSQLConnection.txt trunk/PGSQLKit/PGSQLKit.txt trunk/PGSQLKit/README.txt Removed Paths: ------------- trunk/PGSQLKit/CHANGELOG This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <haw...@us...> - 2012-01-05 20:04:27
|
Revision: 272 http://pgsqlformac.svn.sourceforge.net/pgsqlformac/?rev=272&view=rev Author: hawkmoon Date: 2012-01-05 20:04:21 +0000 (Thu, 05 Jan 2012) Log Message: ----------- GenDB implementation changes in place and roughly tested Modified Paths: -------------- trunk/PGSQLKit/PGSQLField.h trunk/PGSQLKit/PGSQLField.m trunk/PGSQLKit/PGSQLKit.xcodeproj/project.pbxproj trunk/PGSQLKit/PGSQLLogin.m trunk/PGSQLKit/PGSQLRecord.h trunk/PGSQLKit/README.txt This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <haw...@us...> - 2012-01-05 20:09:45
|
Revision: 273 http://pgsqlformac.svn.sourceforge.net/pgsqlformac/?rev=273&view=rev Author: hawkmoon Date: 2012-01-05 20:09:39 +0000 (Thu, 05 Jan 2012) Log Message: ----------- Additional Changes from Home Dev machine Modified Paths: -------------- trunk/PGSQLKit/PGSQLColumn.m trunk/PGSQLKit/PGSQLConnection.m trunk/PGSQLKit/PGSQLConnectionInfo.m trunk/PGSQLKit/PGSQLField.m trunk/PGSQLKit/PGSQLRecord.m This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <nt...@us...> - 2012-01-05 22:22:44
|
Revision: 274 http://pgsqlformac.svn.sourceforge.net/pgsqlformac/?rev=274&view=rev Author: ntiffin Date: 2012-01-05 22:22:38 +0000 (Thu, 05 Jan 2012) Log Message: ----------- Clean up analyze warnings. Modified Paths: -------------- trunk/PGSQLKit/PGSQLColumn.m trunk/PGSQLKit/PGSQLConnection.m trunk/PGSQLKit/PGSQLField.m trunk/PGSQLKit/PGSQLLogin.m This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <nt...@us...> - 2012-01-26 12:34:04
|
Revision: 275 http://pgsqlformac.svn.sourceforge.net/pgsqlformac/?rev=275&view=rev Author: ntiffin Date: 2012-01-26 12:33:55 +0000 (Thu, 26 Jan 2012) Log Message: ----------- First crack at multiple anonymous threaded connections. Ideas only, no debuggging yet. Modified Paths: -------------- trunk/PGSQLKit/PGSQLLogin.m Added Paths: ----------- trunk/PGSQLKit/PGSQLDeveloper_Notes.txt trunk/PGSQLKit/PGSQLDispatch.h trunk/PGSQLKit/PGSQLDispatch.m trunk/PGSQLKit/PGSQLDispatchConnection.h trunk/PGSQLKit/PGSQLDispatchConnection.m This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <nt...@us...> - 2012-01-27 00:06:56
|
Revision: 276 http://pgsqlformac.svn.sourceforge.net/pgsqlformac/?rev=276&view=rev Author: ntiffin Date: 2012-01-27 00:06:50 +0000 (Fri, 27 Jan 2012) Log Message: ----------- Refactoring PGSQLDispatch code. Modified Paths: -------------- trunk/PGSQLKit/PGSQLDispatch.h trunk/PGSQLKit/PGSQLDispatch.m trunk/PGSQLKit/PGSQLDispatchConnection.m This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <nt...@us...> - 2012-01-27 22:35:29
|
Revision: 277 http://pgsqlformac.svn.sourceforge.net/pgsqlformac/?rev=277&view=rev Author: ntiffin Date: 2012-01-27 22:35:23 +0000 (Fri, 27 Jan 2012) Log Message: ----------- - Changed the time interval tracking variables in - (PGSQLRecordset *)open:(NSString *)sql to NSDate objects. - Added @property(readonly) NSDate *startTimeStamp to PGSQLConnection. - Added note about recordCount being alias for rowCount in PGSQLRecordset. - More API refinement for PGSQLDispatch. - Fix compiler warning for globalPGSQLConnection and remove it from global visibility. - Add checkAndRecoverConnection to PGSQLConnection. - Change implementation of PGSQLConnection isConnected to return realtime connection status. - Fix PGSQLConnection execCommand and open to check for encoding errors before sending SQL. - Fix PGSQLConnection open to use defaultEncoding instead of NSUTF8StringEncoding. This will force the caller to set the defaultEncoding if they were relying on it as the default is currently NSMacOSRomanStringEncoding. Modified Paths: -------------- trunk/PGSQLKit/PGSQLConnection.h trunk/PGSQLKit/PGSQLConnection.m trunk/PGSQLKit/PGSQLDeveloper_Notes.txt trunk/PGSQLKit/PGSQLDispatch.h trunk/PGSQLKit/PGSQLDispatch.m trunk/PGSQLKit/PGSQLDispatchConnection.h trunk/PGSQLKit/PGSQLDispatchConnection.m trunk/PGSQLKit/PGSQLRecordset.h Added Paths: ----------- trunk/PGSQLKit/PGSQLKitUnitTest/ trunk/PGSQLKit/PGSQLKitUnitTest/PGSQLKitUnitTest-Info.plist trunk/PGSQLKit/PGSQLKitUnitTest/PGSQLKitUnitTest-Prefix.pch trunk/PGSQLKit/PGSQLKitUnitTest/PGSQLKitUnitTest.h trunk/PGSQLKit/PGSQLKitUnitTest/PGSQLKitUnitTest.m trunk/PGSQLKit/PGSQLKitUnitTest/en.lproj/ trunk/PGSQLKit/PGSQLKitUnitTest/en.lproj/InfoPlist.strings This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <nt...@us...> - 2012-01-30 00:17:32
|
Revision: 278 http://pgsqlformac.svn.sourceforge.net/pgsqlformac/?rev=278&view=rev Author: ntiffin Date: 2012-01-30 00:17:26 +0000 (Mon, 30 Jan 2012) Log Message: ----------- - Add error processing to PGSQLDispatch processResultsFromSQL - Refactoring PGSQLDispatch and related additions. - Add simple test case for PGSQLDispatch. - Add maxConnectionRetries to PGSQLConnection. - Add longRunning flag to Dispatcher API (not implemented yet). - Create test project. - Add checkAndRecover to PGSQLConnection open and execCommand. - Add typedef for dispatch error return and callback block. - Add query timeout property to PGSQLDispatch. - Fix memory management issues in dispatch blocks. Modified Paths: -------------- trunk/PGSQLKit/PGSQLConnection.h trunk/PGSQLKit/PGSQLConnection.m trunk/PGSQLKit/PGSQLDeveloper_Notes.txt trunk/PGSQLKit/PGSQLDispatch.h trunk/PGSQLKit/PGSQLDispatch.m trunk/PGSQLKit/PGSQLDispatchConnection.m trunk/PGSQLKit/PGSQLKitUnitTest/PGSQLKitUnitTest.m Added Paths: ----------- trunk/PGSQLKit/PGSQLDispatchTesting/ trunk/PGSQLKit/PGSQLDispatchTesting/PGSQLDispatchTesting/ trunk/PGSQLKit/PGSQLDispatchTesting/PGSQLDispatchTesting/AppDelegate.h trunk/PGSQLKit/PGSQLDispatchTesting/PGSQLDispatchTesting/AppDelegate.m trunk/PGSQLKit/PGSQLDispatchTesting/PGSQLDispatchTesting/PGSQLDispatchTesting-Info.plist trunk/PGSQLKit/PGSQLDispatchTesting/PGSQLDispatchTesting/PGSQLDispatchTesting-Prefix.pch trunk/PGSQLKit/PGSQLDispatchTesting/PGSQLDispatchTesting/en.lproj/ trunk/PGSQLKit/PGSQLDispatchTesting/PGSQLDispatchTesting/en.lproj/Credits.rtf trunk/PGSQLKit/PGSQLDispatchTesting/PGSQLDispatchTesting/en.lproj/InfoPlist.strings trunk/PGSQLKit/PGSQLDispatchTesting/PGSQLDispatchTesting/en.lproj/MainMenu.xib trunk/PGSQLKit/PGSQLDispatchTesting/PGSQLDispatchTesting/main.m trunk/PGSQLKit/PGSQLDispatchTesting/PGSQLDispatchTesting.xcodeproj/ trunk/PGSQLKit/PGSQLDispatchTesting/PGSQLDispatchTesting.xcodeproj/project.pbxproj trunk/PGSQLKit/PGSQLDispatchTesting/PGSQLDispatchTesting.xcodeproj/project.xcworkspace/ trunk/PGSQLKit/PGSQLDispatchTesting/PGSQLDispatchTesting.xcodeproj/project.xcworkspace/contents.xcworkspacedata This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <nt...@us...> - 2012-01-31 01:11:55
|
Revision: 279 http://pgsqlformac.svn.sourceforge.net/pgsqlformac/?rev=279&view=rev Author: ntiffin Date: 2012-01-31 01:11:49 +0000 (Tue, 31 Jan 2012) Log Message: ----------- With this commit basic dispatching seems to be working, although more test cases need to be developed to fully test the logic. longRunning has not been tested. Downsizing max connections is bypassed because it is not working and has not been tested. Changes include: - Misc text typo corrections in PGSQLDispatch and PGSQLDispatchConnection. - Corrected type in stringDescriptionForErrorNumber method. - Moved dispatch code to PGSQLDispatchConnection so it can be used without PGSQLDispatch. - Fix dispatch logic. - Flush out test project. - Fix some compiler warnings in PGSQLPreparedStatement. - Improve error reporting PGSQLConnection. - Connection clone was not cloning the default encoding. - Fix subtle bug in failed commands sent to open. - Removed dispatch test code from PGSQLKitUnitTest (moved to PGSQLDispatchTesting folder and project) - Changed PGSQLDispatchTesting project to use compiled PGSQLKit instead of framework. Modified Paths: -------------- trunk/PGSQLKit/PGSQLConnection.m trunk/PGSQLKit/PGSQLDispatch.h trunk/PGSQLKit/PGSQLDispatch.m trunk/PGSQLKit/PGSQLDispatchConnection.h trunk/PGSQLKit/PGSQLDispatchConnection.m trunk/PGSQLKit/PGSQLDispatchTesting/PGSQLDispatchTesting/AppDelegate.m trunk/PGSQLKit/PGSQLDispatchTesting/PGSQLDispatchTesting.xcodeproj/project.pbxproj trunk/PGSQLKit/PGSQLKitUnitTest/PGSQLKitUnitTest.m trunk/PGSQLKit/PGSQLPreparedStatement.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <haw...@us...> - 2012-01-31 19:05:04
|
Revision: 280 http://pgsqlformac.svn.sourceforge.net/pgsqlformac/?rev=280&view=rev Author: hawkmoon Date: 2012-01-31 19:04:58 +0000 (Tue, 31 Jan 2012) Log Message: ----------- Added Unit Tests and PGSQLDataObject to base PGSQLKit, prep for inclusion of ntiffin's Dispatch work Modified Paths: -------------- trunk/PGSQLKit/PGSQLField.m trunk/PGSQLKit/PGSQLKit.h trunk/PGSQLKit/PGSQLKit.xcodeproj/project.pbxproj trunk/PGSQLKit/README.txt Added Paths: ----------- trunk/PGSQLKit/NSData+Base64.h trunk/PGSQLKit/NSData+Base64.m trunk/PGSQLKit/PGSQLDataObject.h trunk/PGSQLKit/PGSQLDataObject.m trunk/PGSQLKit/PGSQLKit_DataObject/ trunk/PGSQLKit/PGSQLKit_DataObject/PGSQLKit_DataObject-Info.plist trunk/PGSQLKit/PGSQLKit_DataObject/PGSQLKit_DataObject-Prefix.pch trunk/PGSQLKit/PGSQLKit_DataObject/PGSQLKit_DataObject.h trunk/PGSQLKit/PGSQLKit_DataObject/PGSQLKit_DataObject.m trunk/PGSQLKit/PGSQLKit_DataObject/en.lproj/ trunk/PGSQLKit/PGSQLKit_DataObject/en.lproj/InfoPlist.strings trunk/PGSQLKit/PGSQLKit_Tests/ trunk/PGSQLKit/PGSQLKit_Tests/PGSQLKit_Tests-Info.plist trunk/PGSQLKit/PGSQLKit_Tests/PGSQLKit_Tests-Prefix.pch trunk/PGSQLKit/PGSQLKit_Tests/PGSQLKit_Tests.h trunk/PGSQLKit/PGSQLKit_Tests/PGSQLKit_Tests.m trunk/PGSQLKit/PGSQLKit_Tests/en.lproj/ trunk/PGSQLKit/PGSQLKit_Tests/en.lproj/InfoPlist.strings This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <haw...@us...> - 2012-02-03 03:56:38
|
Revision: 281 http://pgsqlformac.svn.sourceforge.net/pgsqlformac/?rev=281&view=rev Author: hawkmoon Date: 2012-02-03 03:56:32 +0000 (Fri, 03 Feb 2012) Log Message: ----------- Additional Changes to support the generic data object. - added List for Data Object - fixed a bug in data object that put the , in when it should not with the primary key not in the last position of the recordset. - addressed issues in DataObject Unit tests that caused unexpected failures. - time unit test is known to be wrong and failing - general 'tests' unit test is as yet unimplemented but will be fleshed out to test connection, recordset, field and column Modified Paths: -------------- trunk/PGSQLKit/PGSQLDataObject.h trunk/PGSQLKit/PGSQLDataObject.m trunk/PGSQLKit/PGSQLKit.h trunk/PGSQLKit/PGSQLKit.xcodeproj/project.pbxproj trunk/PGSQLKit/PGSQLKit_DataObject/PGSQLKit_DataObject.h trunk/PGSQLKit/PGSQLKit_DataObject/PGSQLKit_DataObject.m Added Paths: ----------- trunk/PGSQLKit/PGSQLDataObjectList.h trunk/PGSQLKit/PGSQLDataObjectList.m This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <haw...@us...> - 2012-02-08 21:23:55
|
Revision: 282 http://pgsqlformac.svn.sourceforge.net/pgsqlformac/?rev=282&view=rev Author: hawkmoon Date: 2012-02-08 21:23:49 +0000 (Wed, 08 Feb 2012) Log Message: ----------- Completed rudimentary implementation of PGSQLDataObject and PGSQLDataObjectList. All initial test cases pass Modified Paths: -------------- trunk/PGSQLKit/PGSQLDataObject.m trunk/PGSQLKit/PGSQLField.m trunk/PGSQLKit/PGSQLKit_DataObject/PGSQLKit_DataObject.h trunk/PGSQLKit/PGSQLKit_DataObject/PGSQLKit_DataObject.m trunk/PGSQLKit/PGSQLKit_Tests/PGSQLKit_Tests.h trunk/PGSQLKit/PGSQLKit_Tests/PGSQLKit_Tests.m This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <nt...@us...> - 2012-02-09 00:49:52
|
Revision: 283 http://pgsqlformac.svn.sourceforge.net/pgsqlformac/?rev=283&view=rev Author: ntiffin Date: 2012-02-09 00:49:46 +0000 (Thu, 09 Feb 2012) Log Message: ----------- - Refactor PGSQLConnection sync methods into PGSQLConnectionBase. Leave async methods in PGSQLConnection. Move some includes from header files to implementation files. For some source code outside of PGSQLKit #import "PGSQLRecordset.h" may need to be added. - Add description method to PGSQLRecordset. - Refactor PGSQLRecordset.m to group code into similar sections. - Clean up analyzer warnings, remove some autorelease's from logging in PGSQLConnectionBase.m. Modified Paths: -------------- trunk/PGSQLKit/PGSQLConnection.h trunk/PGSQLKit/PGSQLConnection.m trunk/PGSQLKit/PGSQLConnectionInfo.h trunk/PGSQLKit/PGSQLConnectionInfo.m trunk/PGSQLKit/PGSQLDataObject.m trunk/PGSQLKit/PGSQLDataObjectList.m trunk/PGSQLKit/PGSQLDispatchConnection.h trunk/PGSQLKit/PGSQLDispatchConnection.m trunk/PGSQLKit/PGSQLDispatchTesting/PGSQLDispatchTesting/AppDelegate.m trunk/PGSQLKit/PGSQLDispatchTesting/PGSQLDispatchTesting.xcodeproj/project.pbxproj trunk/PGSQLKit/PGSQLKitUnitTest/PGSQLKitUnitTest.m trunk/PGSQLKit/PGSQLRecordset.m Added Paths: ----------- trunk/PGSQLKit/PGSQLConnectionBase.h trunk/PGSQLKit/PGSQLConnectionBase.m This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <haw...@us...> - 2012-02-17 21:29:56
|
Revision: 285 http://pgsqlformac.svn.sourceforge.net/pgsqlformac/?rev=285&view=rev Author: hawkmoon Date: 2012-02-17 21:29:50 +0000 (Fri, 17 Feb 2012) Log Message: ----------- Fixes for issues in handling of coma's on update when the primary key was in the first position in the property list. Modified Paths: -------------- trunk/PGSQLKit/PGSQLDataObject.m trunk/PGSQLKit/PGSQLDataObjectList.m This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <haw...@us...> - 2012-02-24 02:48:39
|
Revision: 286 http://pgsqlformac.svn.sourceforge.net/pgsqlformac/?rev=286&view=rev Author: hawkmoon Date: 2012-02-24 02:48:32 +0000 (Fri, 24 Feb 2012) Log Message: ----------- updated xcode project to address subtle changes for PGDataObject Modified Paths: -------------- trunk/PGSQLKit/PGSQLDataObject.m trunk/PGSQLKit/PGSQLKit.xcodeproj/project.pbxproj Added Paths: ----------- trunk/PGSQLKit/README.md Removed Paths: ------------- trunk/PGSQLKit/README.txt This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <haw...@us...> - 2012-03-08 03:26:34
|
Revision: 287 http://pgsqlformac.svn.sourceforge.net/pgsqlformac/?rev=287&view=rev Author: hawkmoon Date: 2012-03-08 03:26:28 +0000 (Thu, 08 Mar 2012) Log Message: ----------- add support for initWithKey Modified Paths: -------------- trunk/PGSQLKit/PGSQLDataObject.h trunk/PGSQLKit/PGSQLDataObject.m This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <haw...@us...> - 2012-03-08 03:30:43
|
Revision: 288 http://pgsqlformac.svn.sourceforge.net/pgsqlformac/?rev=288&view=rev Author: hawkmoon Date: 2012-03-08 03:30:37 +0000 (Thu, 08 Mar 2012) Log Message: ----------- fixed newly added method because I cannot type. Modified Paths: -------------- trunk/PGSQLKit/PGSQLDataObject.h trunk/PGSQLKit/PGSQLDataObject.m This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |