diff options
author | stuconnolly <stuart02@gmail.com> | 2012-07-21 06:04:01 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2012-07-21 06:04:01 +0000 |
commit | 6c58456bcb63e9a32c32704ada1998fe6a3800ea (patch) | |
tree | 7d104ece43b621374cb8a1af7f73791e344fde24 /Frameworks | |
parent | 156a0e45f7ef5d4a3badc09bec0bff66ed3d2400 (diff) | |
download | sequelpro-6c58456bcb63e9a32c32704ada1998fe6a3800ea.tar.gz sequelpro-6c58456bcb63e9a32c32704ada1998fe6a3800ea.tar.bz2 sequelpro-6c58456bcb63e9a32c32704ada1998fe6a3800ea.zip |
QueryKit: Update not equal operator.
Diffstat (limited to 'Frameworks')
-rw-r--r-- | Frameworks/QueryKit/Source/QKQueryUtilities.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Frameworks/QueryKit/Source/QKQueryUtilities.m b/Frameworks/QueryKit/Source/QKQueryUtilities.m index d376ea57..dbe65c3d 100644 --- a/Frameworks/QueryKit/Source/QKQueryUtilities.m +++ b/Frameworks/QueryKit/Source/QKQueryUtilities.m @@ -72,7 +72,7 @@ static NSString *QKUnrecognisedQueryOperatorException = @"QKUnrecognisedQueryOpe opString = @"="; break; case QKNotEqualOperator: - opString = @"!="; + opString = @"<>"; break; case QKLikeOperator: opString = @"LIKE"; |