aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPDatabaseStructure.m
Commit message (Collapse)AuthorAgeFilesLines
* Tidy up.stuconnolly2013-10-271-24/+33
|
* * Changed a query (addressing issue #1687)dmoagx2013-04-241-9/+9
| | | | * Make some strings localizable
* - Add names for most threads created by Sequel Pro for easier debugrowanbeentje2012-10-141-1/+2
|
* - In the SPMySQL.framework, separate framework-triggered connections and ↵rowanbeentje2012-10-141-2/+9
| | | | | | | | | disconnections from external actions, and use that separation to perform safer disconnects - When closing a database document, add a new notification, and use that to resolve retain cycles affecting connection processes - Improve connection controller disconnection when the document is closed, fixing crashes, by building on those two features (addresses Issue #1396) - Use some of the new functionality to improve SSH and MySQL connection cancellation, making both cancelable in the interface and making both respond much more quickly
* Change Sequel Pro's license from GPL (version 2) to MIT.stuconnolly2012-07-251-13/+20
|
* Fix gcc warnings.stuconnolly2012-05-091-1/+1
|
* - Clean up SPMySQL and QueryKit inclusion and search methods, which should ↵rowanbeentje2012-03-271-4/+0
| | | | | | | fix nightly builds - Fix warnings
* tweaks to compile on Xcode 4 / 10.6 SDK for SP_REFACTORsqlprodev2012-03-271-0/+4
|
* - Fix crashes caused by the database structure retrieval continuing briefly ↵rowanbeentje2012-03-181-3/+12
| | | | after the parent document was closed
* SPMySQL integration bugfixes:rowanbeentje2012-03-141-7/+4
| | | | | | | - Fix a bug where the socket path would not be autodetected if an empty string was supplied - Fix a bug fetching primary key column names for tables - Fix a bug building database structures on MySQL 3.x servers
* Final feature work on the SPMySQL branch before merging:rowanbeentje2012-03-141-0/+647
- 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