aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPDatabaseStructure.h
Commit message (Collapse)AuthorAgeFilesLines
* Fix for #2353 ("Attempted to connect a connection that is not disconnected")release-1.1.1-rc1Max2016-02-121-1/+0
| | | | Backport of 3aadea1be33212ca50e7faffcd0620ea976f9d59
* Update URL in source file header to point to GitHub.Stuart Connolly2014-01-261-1/+1
|
* Remove SVN property placeholder.Stuart Connolly2014-01-261-2/+0
|
* - In the SPMySQL.framework, separate framework-triggered connections and ↵rowanbeentje2012-10-141-1/+1
| | | | | | | | | 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-16/+24
|
* - Clean up SPMySQL and QueryKit inclusion and search methods, which should ↵rowanbeentje2012-03-271-1/+4
| | | | | | | fix nightly builds - Fix warnings
* - Fix crashes caused by the database structure retrieval continuing briefly ↵rowanbeentje2012-03-181-1/+2
| | | | after the parent document was closed
* Final feature work on the SPMySQL branch before merging:rowanbeentje2012-03-141-0/+57
- 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