diff options
author | rowanbeentje <rowan@beent.je> | 2013-03-11 23:03:28 +0000 |
---|---|---|
committer | rowanbeentje <rowan@beent.je> | 2013-03-11 23:03:28 +0000 |
commit | f4967d21057a1363cacc9607b5ace0149a45ca11 (patch) | |
tree | 987e9786303429596420858cec43702f5957790b /Frameworks/SPMySQLFramework/Source/SPMySQL.h | |
parent | e88ea3b18a1e9bd1f1e5bef51d982992ce211933 (diff) | |
download | sequelpro-f4967d21057a1363cacc9607b5ace0149a45ca11.tar.gz sequelpro-f4967d21057a1363cacc9607b5ace0149a45ca11.tar.bz2 sequelpro-f4967d21057a1363cacc9607b5ace0149a45ca11.zip |
- Add a new SPMySQLEmptyResult class to SPMySQLFrameowkr, returning it instead of nil if a query produces no result set. This allows per-result-set properties to be preserved, fixing issues where information like query execution time was lost - addressing Issue #1577
Diffstat (limited to 'Frameworks/SPMySQLFramework/Source/SPMySQL.h')
-rw-r--r-- | Frameworks/SPMySQLFramework/Source/SPMySQL.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQL.h b/Frameworks/SPMySQLFramework/Source/SPMySQL.h index aa9008b6..904f390c 100644 --- a/Frameworks/SPMySQLFramework/Source/SPMySQL.h +++ b/Frameworks/SPMySQLFramework/Source/SPMySQL.h @@ -58,6 +58,7 @@ // MySQL result set, streaming subclasses of same, and associated categories #import "SPMySQLResult.h" +#import "SPMySQLEmptyResult.h" #import "SPMySQLStreamingResult.h" #import "SPMySQLFastStreamingResult.h" #import "Field Definitions.h" |