diff options
author | stuconnolly <stuart02@gmail.com> | 2012-09-10 08:52:00 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2012-09-10 08:52:00 +0000 |
commit | 668c3f691ac236bb0ce5c16314b5349c34a01eb8 (patch) | |
tree | e2bf77b384dd51bf808056bf91a7f1d9de4007b1 /Frameworks/PostgresKit/Source/FLXPostgresConnectionQueryExecution.m | |
parent | 05469187ed0b48a628d80bc17e2a1874768ba457 (diff) | |
download | sequelpro-668c3f691ac236bb0ce5c16314b5349c34a01eb8.tar.gz sequelpro-668c3f691ac236bb0ce5c16314b5349c34a01eb8.tar.bz2 sequelpro-668c3f691ac236bb0ce5c16314b5349c34a01eb8.zip |
Make connection resets asynchronous.
Diffstat (limited to 'Frameworks/PostgresKit/Source/FLXPostgresConnectionQueryExecution.m')
-rw-r--r-- | Frameworks/PostgresKit/Source/FLXPostgresConnectionQueryExecution.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Frameworks/PostgresKit/Source/FLXPostgresConnectionQueryExecution.m b/Frameworks/PostgresKit/Source/FLXPostgresConnectionQueryExecution.m index a58d6219..a41471a3 100644 --- a/Frameworks/PostgresKit/Source/FLXPostgresConnectionQueryExecution.m +++ b/Frameworks/PostgresKit/Source/FLXPostgresConnectionQueryExecution.m @@ -121,7 +121,7 @@ FLXQueryParamData; // Notify the delegate if (_delegate && _delegateSupportsWillExecute) { - [_delegate connection:self willExecute:query values:values]; + [_delegate connection:self willExecute:query withValues:values]; } FLXQueryParamData *paramData = [self _createParameterDataStructureWithCount:values ? (int)[values count] : 0]; |