diff options
author | rowanbeentje <rowan@beent.je> | 2013-08-14 11:53:42 +0000 |
---|---|---|
committer | rowanbeentje <rowan@beent.je> | 2013-08-14 11:53:42 +0000 |
commit | e852b017bef440b63c4cbaf55675afec2d761073 (patch) | |
tree | 15daf825c3caa5d3d9f2c121a5f26e88e3513a13 /Frameworks/SPMySQLFramework/SPMySQLEmptyResult.h | |
parent | 173da01f2446d86a4e3a9731ab0cf2ee474c2357 (diff) | |
download | sequelpro-e852b017bef440b63c4cbaf55675afec2d761073.tar.gz sequelpro-e852b017bef440b63c4cbaf55675afec2d761073.tar.bz2 sequelpro-e852b017bef440b63c4cbaf55675afec2d761073.zip |
- Add some overrides to SPMySQLEmptyResult to fix errors when running queries which don't produce a result set following the data store changes
Diffstat (limited to 'Frameworks/SPMySQLFramework/SPMySQLEmptyResult.h')
-rw-r--r-- | Frameworks/SPMySQLFramework/SPMySQLEmptyResult.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Frameworks/SPMySQLFramework/SPMySQLEmptyResult.h b/Frameworks/SPMySQLFramework/SPMySQLEmptyResult.h index 153d5d68..281d5b7a 100644 --- a/Frameworks/SPMySQLFramework/SPMySQLEmptyResult.h +++ b/Frameworks/SPMySQLFramework/SPMySQLEmptyResult.h @@ -30,6 +30,12 @@ // // More info at <http://code.google.com/p/sequel-pro/> -@interface SPMySQLEmptyResult : SPMySQLResult +@interface SPMySQLEmptyResult : SPMySQLResult { + + id delegate; + +} + +@property (readwrite, assign) id delegate; @end |