aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPTableContentDataSource.m
Commit message (Collapse)AuthorAgeFilesLines
* Rework table content and custom query data loading and storage for speed ↵rowanbeentje2013-08-131-2/+24
| | | | | | | | | 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 truncation of table content BINARY values which are being edited ↵rowanbeentje2013-05-061-2/+6
| | | | | | | in-place, addressing Issue #1702 - Ensure that truncation of data values includes an ellipsis to make it clear when performance-based truncation is occurring
* Changing SP_REFACTOR macro to SP_CODAsqlprodev2013-02-141-3/+3
|
* Move table content filter logic to it's own file.stuconnolly2012-08-151-5/+6
|
* * Restore filter window functionalitydmoagx2012-07-251-1/+1
|
* Change Sequel Pro's license from GPL (version 2) to MIT.stuconnolly2012-07-251-3/+3
|
* - Clean up SPMySQL and QueryKit inclusion and search methods, which should ↵rowanbeentje2012-03-271-2/+1
| | | | | | | fix nightly builds - Fix warnings
* - When exporting a query result or filtered table view make sure we're ↵stuconnolly2012-03-201-0/+183
including the entire content of BLOBs, not just what we display. Fixes issue #1124. - Move SPTableContent's table view datasource and delegate methods to separate categories in order to reduce it's size.