aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPServerSupport.h
Commit message (Collapse)AuthorAgeFilesLines
* Issue #1515: Add support for fractional seconds in date/time data types on ↵stuconnolly2013-05-121-0/+8
| | | | server versions (>5.6.3) that support them.
* * Add support for querying the server default charset and collationdmoagx2013-03-101-4/+4
| | | | * Move a bit of redundant code into a method
* * Add support for querying MySQL 4 for collationsdmoagx2013-03-071-0/+6
|
* Change Sequel Pro's license from GPL (version 2) to MIT.stuconnolly2012-07-251-12/+19
|
* Add support for renaming users on MySQL versions less than 5.0.2 by directly ↵stuconnolly2012-03-251-0/+6
| | | | updating the mysql.user table. Fixes issue #1285.
* For some reason table creation on MySQL 4.0 servers doesn't like the ↵stuconnolly2011-10-091-0/+7
| | | | engine/type being quoted.
* - Add a new -engineTypeQueryName method to SPServerSupport, with a correct ↵rowanbeentje2011-01-131-0/+6
| | | | | | | split between TYPE or ENGINE depending on database version. - Update CREATE TABLE and ALERT TABLE queries to use this, fixing custom-type table creation on MySQL <4 and table type changes on MySQL >= 5.5. This addresses Issue #947.
* Add support for adding SPATIAL indexes on MyISAM tables. Also, update ↵stuconnolly2010-10-081-0/+6
| | | | Localizable.strings.
* Various improvements to server capability/version checking, including:stuconnolly2010-10-071-0/+209
- Add a new ServerSupport class, for which an instance is created upon each new connection and is then subsequently accessible via SPDatabaseDocument. - Replace the majority of manual version checking with calls to properties in the above new class. - Improve the user manager's compatibility with MySQL 3 and 4 servers. Fixes issue #811 Other changes include: - Disable the encoding popup button when adding a new table or database to servers running pre MySQL 4.1 as it only contains one option, 'Default'. - Fix various potential memory leaks discovered during static analysis. - General tidy up and comments.