diff options
author | stuconnolly <stuart02@gmail.com> | 2012-09-08 02:30:32 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2012-09-08 02:30:32 +0000 |
commit | 11a170b25006f8a1546ab575c668fd95b49a43f7 (patch) | |
tree | 41aa04f8378e33e714e1f48253dfbdd444a41636 /Frameworks/PostgresKit | |
parent | 77c2523ef1f511b878ba21812f7cb8ad55d82eb9 (diff) | |
download | sequelpro-11a170b25006f8a1546ab575c668fd95b49a43f7.tar.gz sequelpro-11a170b25006f8a1546ab575c668fd95b49a43f7.tar.bz2 sequelpro-11a170b25006f8a1546ab575c668fd95b49a43f7.zip |
Remove call to sending query parameters as binary until it's implemented.
Diffstat (limited to 'Frameworks/PostgresKit')
-rw-r--r-- | Frameworks/PostgresKit/Source/FLXPostgresConnectionQueryExecution.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Frameworks/PostgresKit/Source/FLXPostgresConnectionQueryExecution.m b/Frameworks/PostgresKit/Source/FLXPostgresConnectionQueryExecution.m index c8207dd9..7a220816 100644 --- a/Frameworks/PostgresKit/Source/FLXPostgresConnectionQueryExecution.m +++ b/Frameworks/PostgresKit/Source/FLXPostgresConnectionQueryExecution.m @@ -153,9 +153,9 @@ FLXQueryParamData; [FLXPostgresException raise:FLXPostgresConnectionErrorDomain reason:[NSString stringWithFormat:@"Parameter $%u unsupported class %@", (i + 1), NSStringFromClass([nativeObject class])]]; return nil; } - + + NSData *data = nil; // Sending parameters as binary is not implemented yet FLXPostgresOid type = 0; - NSData *data = [typeHandler remoteDataFromObject:nativeObject type:&type]; if (!data) { [self _destroyParamDataStructure:paramData]; |