aboutsummaryrefslogtreecommitdiffstats
path: root/Source
Commit message (Collapse)AuthorAgeFilesLines
* - Fix exceptions when shift-tabbing back from a very early cell in the ↵rowanbeentje2013-08-261-2/+2
| | | | Structure view to the last cell (http://spbug.com/l/2122)
* - Fix occasional exceptions when saves of new fields in the table structure ↵rowanbeentje2013-08-261-7/+6
| | | | fail (http://spbug.com/l/2500, http://spbug.com/l/2281, http://spbug.com/l/2046)
* - Improve thread safety within the console window, triggering draw and view ↵rowanbeentje2013-08-261-6/+8
| | | | | | | updates only on the main window - Ensure the console window is first loaded on the main thread, fixing warnings from CoreAnimation ("CoreAnimation: warning, deleted thread with uncommitted CATransaction") on startup when a background thread calls [window isVisible] and triggers a lazy awakeFromNib of the window
* - Fix an exception on 10.6 when clicking below the table list rows ↵rowanbeentje2013-08-251-6/+17
| | | | (http://spbug.com/l/1726)
* - Ensure the table row counts are correctly updated when reloading tables - ↵rowanbeentje2013-08-221-0/+2
| | | | this should address Issue #1789 and Issue #1788, and possibly Issue #1787
* - Fix hanging waiting for new result store to return if there was a query ↵rowanbeentje2013-08-141-1/+1
| | | | error, addressing Issue #1783
* Rework table content and custom query data loading and storage for speed ↵rowanbeentje2013-08-1312-495/+474
| | | | | | | | | 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.
* * Fixes validation of "Show Optimized Field Type" item (issue #1729)dmoagx2013-05-241-0/+5
|
* - Address further Release/Distribution build warningsrowanbeentje2013-05-2212-62/+62
|
* - Fix all the Xcode 4.6.2 build warnings, and tweak warning settings to ↵rowanbeentje2013-05-2149-130/+112
| | | | enable some more
* Issue #1515: Add support for fractional seconds in date/time data types on ↵stuconnolly2013-05-123-11/+27
| | | | server versions (>5.6.3) that support them.
* Issue #1717: Custom query export validation only needs to know the number of ↵stuconnolly2013-05-113-25/+34
| | | | rows of the current result, so don't return the actual result.
* - Fix hangs when adding columns to large tables after the table has beeen ↵rowanbeentje2013-05-091-1/+5
| | | | viewed already, addressing Issue #1710
* - Fix truncation of table content BINARY values which are being edited ↵rowanbeentje2013-05-062-3/+7
| | | | | | | in-place, addressing Issue #1702 - Ensure that truncation of data values includes an ellipsis to make it clear when performance-based truncation is occurring
* Update localisation comment.stuconnolly2013-04-291-1/+1
|
* Issue #1536: Add the option to force delete a table, which will disable then ↵stuconnolly2013-04-292-68/+114
| | | | re-enable foreign checks. Also, provide a more helpful error message when a table cannot be deleted because of foreign key constraints.
* - Fix another issue causing ALTER statements to error for binary column ↵rowanbeentje2013-04-281-1/+1
| | | | types being edited, further addressing Issue #1265
* * Fix ivars from last commitdmoagx2013-04-261-0/+10
|
* * Move some duplicate code for charset/collation to it's own classdmoagx2013-04-266-256/+462
|
* * Changed a query (addressing issue #1687)dmoagx2013-04-242-16/+16
| | | | * Make some strings localizable
* * Composite Foreign Keys will now show all columns in Relation view (workaround)dmoagx2013-04-214-8/+16
|
* - Fix string type detection, addressing errors when converting string types ↵rowanbeentje2013-04-163-4/+4
| | | | to blob or binary fields (addressing Issue #1453)
* - Specify the NULL status of fields when creating view placeholders on ↵rowanbeentje2013-04-141-1/+5
| | | | export, fixing problems with invalid timestamp NULL defaults, addressing Issue #1686
* Use constants instead of hard coded strings.stuconnolly2013-04-071-58/+82
|
* - Fix process list kill query/connection actions not using the correct ID ↵rowanbeentje2013-04-031-3/+3
| | | | if the list was filtered
* Split the process list controller's table view data source and delegate ↵stuconnolly2013-04-033-64/+133
| | | | methods into their own category.
* Issue #1601: Fix menu items not being validated properly once a connection ↵stuconnolly2013-04-031-49/+63
| | | | is established.
* - Fix newline warningsrowanbeentje2013-04-031-1/+1
|
* - Move the SPBeginWaitingAlertSheet function to a ↵rowanbeentje2013-04-035-111/+139
| | | | beginWaitingAlertSheetWithTitle:... class method on a new SPAlertSheets class, allowing us to use invocation forwarding to ensure the entire function is executing on the main thread. This allows runloop processing to happen on the main thread, addressing Issue #1676
* - Fix validation of the "Add to Favorites" File menu item when editing past ↵rowanbeentje2013-04-021-3/+3
| | | | | | | | favorites - Fix the action of the "Add to Favorites" File menu item to correctly create the new favorite These address Issue #1666.
* - Fix query status and error message title to not always suggest an error ↵rowanbeentje2013-04-012-0/+6
| | | | has occurred, addressing Issue #1670
* - Alter the SPComboPopupButton to ignore clicks started in the left-hand ↵rowanbeentje2013-04-012-5/+4
| | | | | | | part of the button but ended in the right-hand part of the button - Change the button to use "Run All" instead of "Run All Queries" to avoid localisation issues
* Combine the "Run All" and "Run Current/Previous/Selection" buttons into a ↵rowanbeentje2013-03-316-71/+512
| | | | | | | | | | | | single button with dropdown menu with ability to change the default action: - Create a new SPComboPopupButton class; this subclasses NSPopupButton to retain the ability to show the popup menu, but only when the right-hand side of the button is pressed, allowing the rest of the button to perform the click action - Combine the previous two "Run" buttons on the Custom Query view into a new SPComboPopupButton - Move the Run menu items from the gear menu into the Run button popup menu so they can be discovered more easily (and the shortcuts seen more easily) - Add a menu item to switch the button's default action, which also swaps all associated shortcuts - Clean up associated logic This implements Issue #1569
* * Add support for specifying a collation when creating a tabledmoagx2013-03-202-4/+89
|
* Fix build warning.stuconnolly2013-03-191-0/+1
|
* - Fix errors when editing or moving columns on server vesions which do not ↵rowanbeentje2013-03-194-19/+10
| | | | | | | | support character sets/collations, addressing Issue #1629 - Fix needless collation queries on those servers - Disable field enums and table encoding dropdown on those servers
* Make some small tweaks to string BINARY handling:rowanbeentje2013-03-171-5/+3
| | | | | | - Correctly send the binary state/collation when reordering fields, addressing Issue #1265 - Allow unticking of the binary box to save correctly, allowing conversion of fields to non-binary collations again
* * Add support for ALTER DATABASE statement (needs review)dmoagx2013-03-172-0/+141
|
* - Correctly reset document state for setting it from file/when duplicating ↵rowanbeentje2013-03-131-2/+3
| | | | tab, further addressing Issue #1619
* - Improve startup when loading from file, preventing overwrite of details ↵rowanbeentje2013-03-123-2/+12
| | | | read from a spf/spfs during startup. This addresses Issue #1619
* * Adding the possibility to set a collation when creating a databasedmoagx2013-03-112-1/+87
|
* Adjust keywords list to fix auto capitalisation of "ON". avenjamin2013-03-111-1/+1
|
* * When adding a database the servers default charset is now showndmoagx2013-03-112-3/+10
|
* - Allow Favorites import to read favorites from an old preferences .plist ↵rowanbeentje2013-03-111-2/+10
| | | | file, further addressing Issue #1588
* - Alter the preferences favourite minimum version to avoid issues with ↵rowanbeentje2013-03-101-7/+13
| | | | | | | previous runs of nightlies, which may partially address Issue #1588 - Remove the old favourites key from the preferences now imports have succeeded
* Restore tab bar label when cancelling a connection. avenjamin2013-03-101-1/+2
|
* * Add support for querying the server default charset and collationdmoagx2013-03-104-34/+76
| | | | * Move a bit of redundant code into a method
* - If the Custom Query editor view is active on window open, correctly set ↵rowanbeentje2013-03-101-3/+6
| | | | the focus in it, addressing Issue #1590
* - Fix release builds after r4041rowanbeentje2013-03-101-0/+1
| | | | | - Update localizable strings
* Tweak and improve the User Manager:rowanbeentje2013-03-097-73/+236
| | | | | | | | | - Rework how data to populate the user manager is retrieved from the server, speeding up display of lots of users by a large factor - Fix support for schema permissions for the Anonymous user, and add support for '%' and '' hostnames (only showing if already set once), fixing Issue #1620 - Highlight databases in the user manager that have permissions set for the selected user - Switch to using the centrally provided database list to reduce queries and remove the information_schema and performance_schema "databases" - Speed up a number of operations by tweaking the logic and queries used