aboutsummaryrefslogtreecommitdiffstats
path: root/Frameworks/PostgresKit/PostgresKit.xcodeproj
Commit message (Collapse)AuthorAgeFilesLines
* Silence remaining PostgresKit recommended build settings.Stuart Connolly2016-12-302-6/+6
|
* Update PostgresKit to recommended build settings.Stuart Connolly2016-12-301-3/+6
|
* Converted PostgresKit tests to XCTestMarius Ursache2016-03-012-22/+38
|
* Fix PostgresKit tests not running.Stuart Connolly2014-01-271-1/+3
|
* Remove more SVN properties.Stuart Connolly2014-01-261-16/+6
|
* Switch back to Debug by default.Stuart Connolly2014-01-261-1/+1
|
* Apply recommended project settings.Stuart Connolly2014-01-262-6/+40
|
* Fix project schemes.Stuart Connolly2014-01-261-0/+69
|
* Update analyzer modes.Stuart Connolly2014-01-191-0/+3
|
* Fix make files and running tests.Stuart Connolly2014-01-191-20/+8
|
* PostgresKit: Add a common integration test case base.stuconnolly2013-05-211-0/+6
|
* Mssing from previous commit.stuconnolly2013-05-211-0/+6
|
* PostgresKit: Enable additional data type integration tests.stuconnolly2013-01-311-1/+1
|
* PostgresKit: Bump base SDK to be 10.6 and drop PPC support.stuconnolly2013-01-241-21/+9
|
* Make sure the test script exits with the correct code based on the success ↵stuconnolly2013-01-141-9/+3
| | | | of the tests.
* Fix filename typo.stuconnolly2012-09-271-4/+4
|
* Add a binary data handler.stuconnolly2012-09-271-2/+18
|
* Add data type tests.stuconnolly2012-09-271-1/+13
|
* Change project prefix.stuconnolly2012-09-261-160/+168
|
* Fix release build warnings.stuconnolly2012-09-121-3/+6
|
* Rework type handling; reducing the number of paremeters being passed around ↵stuconnolly2012-09-101-1/+1
| | | | as well as libpq calls.
* Add support for network address types.stuconnolly2012-09-091-1/+1
|
* Additional type support.stuconnolly2012-09-091-1/+1
|
* Rename some classes.stuconnolly2012-09-091-16/+16
|
* Missing from previous commit.stuconnolly2012-09-091-4/+4
|
* Add a time interval wrapper.stuconnolly2012-09-091-0/+8
|
* Add tests target and test script.stuconnolly2012-09-081-2/+165
|
* Add native timezone type support.stuconnolly2012-09-081-0/+16
|
* Headers shouldn't be public.stuconnolly2012-09-071-2/+2
|
* Add libpqtypes static library so we don't have to reverse engineer Postgres' ↵stuconnolly2012-09-071-18/+50
| | | | binary formats.
* Header should be public.stuconnolly2012-09-061-1/+1
|
* Initial commit of PostgresKit, our new Postgres framework as a start towards ↵stuconnolly2012-09-031-0/+637
adding PostgreSQL support to Sequel Pro. Note, that the framerwork is by no means feature complete and in it's current state has quite a few limitations: - No support for Postgres' asynchronous query API - Only supports the very basic data types (char/text and numerics) - No support (outide of libpq) for re-establishing dropped connections Current feature support includes: - Basic connection handling - Query execution - Prepared statement execution - Encoding support similar to SPMySQL's