aboutsummaryrefslogtreecommitdiffstats
path: root/Source/CustomQuery.m
diff options
context:
space:
mode:
authorrowanbeentje <rowan@beent.je>2009-07-23 23:08:57 +0000
committerrowanbeentje <rowan@beent.je>2009-07-23 23:08:57 +0000
commite1e2fed7963d439b01d2048b8b79fed69b051d94 (patch)
treedb857b12c0240b0bec0a92aa138e81e69205f72d /Source/CustomQuery.m
parentcdb3bc05f56e2a7a89581f3ed42e5147323c014f (diff)
downloadsequelpro-e1e2fed7963d439b01d2048b8b79fed69b051d94.tar.gz
sequelpro-e1e2fed7963d439b01d2048b8b79fed69b051d94.tar.bz2
sequelpro-e1e2fed7963d439b01d2048b8b79fed69b051d94.zip
- Fix editing of results including decimals
- Enable custom query result editing
Diffstat (limited to 'Source/CustomQuery.m')
-rw-r--r--Source/CustomQuery.m8
1 files changed, 3 insertions, 5 deletions
diff --git a/Source/CustomQuery.m b/Source/CustomQuery.m
index b6499431..f5742df4 100644
--- a/Source/CustomQuery.m
+++ b/Source/CustomQuery.m
@@ -1609,16 +1609,14 @@
BOOL isFieldEditable = (!noTableName && numberOfPossibleUpdateRows == 1) ? YES : NO;
- // maybe??
- // if(!isFieldEditable)
- // [errorText setStringValue:[NSString stringWithFormat:@"Field is not editable. Couldn't identify field origin unambiguously (%d match%@).", numberOfPossibleUpdateRows, (numberOfPossibleUpdateRows>1)?@"es":@""]];
+ if(!isFieldEditable)
+ [errorText setStringValue:[NSString stringWithFormat:@"Field is not editable. Couldn't identify field origin unambiguously (%d match%@).", numberOfPossibleUpdateRows, (numberOfPossibleUpdateRows>1)?@"es":@""]];
- //to enable editing simply uncomment isEditable and delete 'NO' :)
SPFieldEditorController *fieldEditor = [[SPFieldEditorController alloc] init];
id editData = [[fieldEditor editWithObject:[[fullResult objectAtIndex:rowIndex] objectAtIndex:[[aTableColumn identifier] intValue]]
usingEncoding:[mySQLConnection encoding]
isObjectBlob:isBlob
- isEditable:/*isFieldEditable*/NO
+ isEditable:isFieldEditable
withWindow:tableWindow] retain];
if ( editData )