diff options
author | rowanbeentje <rowan@beent.je> | 2012-03-22 01:18:18 +0000 |
---|---|---|
committer | rowanbeentje <rowan@beent.je> | 2012-03-22 01:18:18 +0000 |
commit | 24f89a873caf37947f0447ff870ca4c8d55c453e (patch) | |
tree | 22162a0e1eead7190e316c384ff8c6c1b98661b3 /Source/SPConstants.m | |
parent | 3916b4227d1e02942504e13a2d36b3e6f57670bb (diff) | |
download | sequelpro-24f89a873caf37947f0447ff870ca4c8d55c453e.tar.gz sequelpro-24f89a873caf37947f0447ff870ca4c8d55c453e.tar.bz2 sequelpro-24f89a873caf37947f0447ff870ca4c8d55c453e.zip |
- Rework SPTableData PRIMARY KEY and UNIQUE KEY parsing to use SPSQLParser instead of regexes
- Support multiple primary keys in the SPTableData parse
- If possible, use primary keys to preserve table content selection instead of row indexes
- Improve SPTableData primary keys method to use cached value instead of using another query
- Preserve selection when filtering tables if appropriate
Diffstat (limited to 'Source/SPConstants.m')
-rw-r--r-- | Source/SPConstants.m | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/SPConstants.m b/Source/SPConstants.m index 7fa35505..ae9845fa 100644 --- a/Source/SPConstants.m +++ b/Source/SPConstants.m @@ -211,6 +211,8 @@ NSString *SPLastImportIntoNewTableType = @"LastImportIntoNewTableType" NSString *SPGlobalValueHistory = @"GlobalValueHistory"; NSString *SPBundleDeletedDefaultBundlesKey = @"deletedDefaultBundles"; NSString *SPHiddenKeyFileVisibilityKey = @"KeySelectionHiddenFilesVisibility"; +NSString *SPSelectionDetailTypeIndexed = @"SelectionDetailTypeNSIndexSet"; +NSString *SPSelectionDetailTypePrimaryKeyed = @"SelectionDetailTypePrimaryKeyedDetails"; // URLs NSString *SPDonationsURL = @"http://www.sequelpro.com/donate/"; |