aboutsummaryrefslogtreecommitdiffstats
path: root/Frameworks/SPMySQLFramework/SPMySQLFramework.xcodeproj
Commit message (Collapse)AuthorAgeFilesLines
* Move 4 misplaced filesMax2018-02-281-4/+4
|
* Manually roll back all changes for #2979Max2018-02-271-5/+0
| | | | Those will be moved to a different branch for the time being since other stuff needs to be changed first
* Move utility function ot a different fileMax2018-02-251-0/+5
|
* Silly README file, you can’t be a source code fileMax2017-04-011-2/+0
|
* Fix file links.Stuart Connolly2017-03-261-2/+8
|
* Added shared scheme for SPMySQL FrameworkMarius Ursache2016-02-291-0/+99
|
* Updated SPMySQL Framework SettingsMarius Ursache2016-02-291-1/+10
|
* Add a few more unit tests to SPMySQLMax2015-10-041-4/+8
|
* Configure SPMySQL project to actually be able to run Unit TestsMax2015-10-041-3/+287
| | | | | | | | * Add a new configuration "Unit Tests" * Add a new Target for the Unit Test code * Assign Unit Test Target to the Test step of SPMySQL scheme * Also remove a compiler setting for PowerMac G5
* Tidy up logical file structure.Stuart Connolly2014-05-261-25/+9
|
* Re-add explicit 32/64 bit builds following Xcode settings upgrade to ↵rowanbeentje2014-05-041-0/+3
| | | | recommend settngs removing this
* Update to latest Xcode-recommended build settingsrowanbeentje2014-05-031-7/+1
|
* Fix header visibility.Stuart Connolly2014-01-141-2/+2
|
* Add constants for all MySQL data types.Stuart Connolly2014-01-141-0/+8
|
* Fix architectures.Stuart Connolly2013-12-021-0/+3
|
* Set deployment target to 10.6 so we don't get unnecessary deprecation warnings.Stuart Connolly2013-11-271-0/+3
|
* Apply recommended project settings.Stuart Connolly2013-11-261-4/+10
|
* enable skip_install (debugging continuous integration server)Abhi Beckert2013-11-101-0/+3
|
* Update SDKROOT = macosx; for main project, SPMySQLFramework and QueryKit ↵Matt Langtree2013-11-091-3/+3
| | | | sub-projects
* Rework table content and custom query data loading and storage for speed ↵rowanbeentje2013-08-131-1/+21
| | | | | | | | | increases and lower memory usage: - Add a new SPMySQLStreamingResultStore class to SPMySQL.framework. This class acts as both a result set and a data store for the accompanying data, storing the row information in a custom format in a custom malloc zone. - Amend SPDataStorage to wrap the new class, so original result information is stored in the one location in the custom format. Any edited information is handled by SPDataStorage for clean separation - Rework table content and custom query data data stores to use the new class. This significantly speeds up data loading, resulting in faster data loads if they weren't previously network constrained, or lower CPU usage otherwise. The memory usage is also lowered, with the memory overhead for many small cells being enormously reduced.
* - Fix all the Xcode 4.6.2 build warnings, and tweak warning settings to ↵rowanbeentje2013-05-211-1/+16
| | | | enable some more
* - Add a new SPMySQLEmptyResult class to SPMySQLFrameowkr, returning it ↵rowanbeentje2013-03-111-0/+8
| | | | instead of nil if a query produces no result set. This allows per-result-set properties to be preserved, fixing issues where information like query execution time was lost - addressing Issue #1577
* Build config update:stuconnolly2013-01-241-21/+9
| | | | | | | | | - Update base SDK to 10.6 - Update minimum OS version to 10.6 - Update all XIB to have a 10.6 target - Drop support for PPC - Apply all of the above to frameworks SPMySQLFramework and QueryKit
* - Alter the build settings for compatibility with Xcode 3.2.x up to Xcode ↵rowanbeentje2012-09-231-6/+11
| | | | | | | | 4.5, keeping a base SDK of 10.5 for compatibility for otherwise adding and adjusting settings appropriately - Add instructions to the README for Xcode 4 SDK installation.
* Revert of r3849 (undoing the build break)bamse162012-09-191-11/+9
|
* Updated project to run/build on Mac OSX 10.8/Xcode 4.4bamse162012-09-131-9/+11
| | | | | | Updated QueryKit project to be able to build and run tests (changed Symbols Hidden By Default to NO in Default config)
* - Upgrade to the MySQL 5.5.22 client libraries, updating to a much more ↵rowanbeentje2012-04-091-4/+0
| | | | | | | | up-to-date codebase. - Update the build-mysql-client.sh MySQL build script within SPMySQL.framework to allow it to easily build 5.5 client libraries - Fix reconnection within SPMySQL.framework after a connection is lost for MySQL servers < 5 when a query is cancelled by killing the connection
* - Clean up SPMySQL and QueryKit inclusion and search methods, which should ↵rowanbeentje2012-03-271-1/+2
| | | | | | | fix nightly builds - Fix warnings
* Final feature work on the SPMySQL branch before merging:rowanbeentje2012-03-141-0/+16
| | | | | | | | - Add a ping keepalive managing object to prevent retain cycles from the NSTimer - Add -[SPMySQLConnection copy] support - Refactor Hans-Jörg Bibiko's database structure retrieval, moving it out of the MySQL framework and building it around a copy of the connection. This reduces the amount of connections-over-time used by Sequel Pro to two constant connections (addressing Issue #1097) and improves robustness. - Use the database structure retrieval connection for faster query cancellation without an extra connection required, if possible
* Improvements to SPMySQL framework:rowanbeentje2012-02-241-3/+4
| | | | | | | - Correctly record affected rows - Fix thread safety/autorelease issues when draining pools during fast iteration - Improve streaming result processing speed
* Warning: this branch commit is largely untested, and known to throw ↵rowanbeentje2012-02-231-2/+74
| | | | | | | | | | | | exceptions as database structure retrieval is currently missing! Further work on SPMySQLFramework integration: - Improve SPMySQL framework build settings including correct ppc builds and a Distribution configuration for the build distributions to match - Add new convenience querying and result methods to the framework - Amend Sequel Pro source to use the new SPMySQL.framework methods everywhere, replacing MCPKit methods where they differ and improving some functions - Remove MCPKit from the source - Fix a number of warnings on Release-style builds
* - Fix incorrect conversion via a CFStringEncoding for eucjpmsrowanbeentje2012-02-202-6493/+0
| | | | | - Delete incorrectly committed build and pref files
* Initial commit of the new SPMySQL Framework, which is added to the project ↵rowanbeentje2012-02-203-0/+7099
and ready for use but not yet integrated. This new framework should provide much of the functionality required from MCPKit and is based around its interface for relatively easy integration. The largest missing component is Hans' structure code which I believe is better placed outside the framework. From the Readme file: The SPMySQL Framework is intended to provide a stable MySQL connection framework, with the ability to run text-based queries and rapidly retrieve result sets with conversion from MySQL data types to Cocoa objects. SPMySQL.framework has an interface loosely based around that provided by MCPKit by Serge Cohen and Bertrand Mansion (http://mysql-cocoa.sourceforge.net/), and in particular the heavily modified Sequel Pro version (http://www.sequelpro.com/). It is a full rewrite of the original framework, although it includes code from patches implementing the following Sequel Pro functionality, largely contributed by Hans-Jörg Bibiko, Stuart Connolly, Jakob Egger, and Rowan Beentje: - Connection locking (Jakob et al) - Ping & keepalive (Rowan et al) - Query cancellation (Rowan et al) - Delegate setup (Stuart et al) - SSL support (Rowan et al) - Connection checking (Rowan et al) - Version state (Stuart et al) - Maximum packet size control (Hans et al) - Result multithreading and streaming (Rowan et al) - Improved encoding support & switching (Rowan et al) - Database structure; moved to inside the app (Hans et al) - Query reattempts and error-handling approach (Rowan et al) - Geometry result class (Hans et al) - Connection proxy (Stuart et al)