aboutsummaryrefslogtreecommitdiffstats
path: root/Frameworks/QueryKit
diff options
context:
space:
mode:
authorstuconnolly <stuart02@gmail.com>2012-07-21 06:04:01 +0000
committerstuconnolly <stuart02@gmail.com>2012-07-21 06:04:01 +0000
commit6c58456bcb63e9a32c32704ada1998fe6a3800ea (patch)
tree7d104ece43b621374cb8a1af7f73791e344fde24 /Frameworks/QueryKit
parent156a0e45f7ef5d4a3badc09bec0bff66ed3d2400 (diff)
downloadsequelpro-6c58456bcb63e9a32c32704ada1998fe6a3800ea.tar.gz
sequelpro-6c58456bcb63e9a32c32704ada1998fe6a3800ea.tar.bz2
sequelpro-6c58456bcb63e9a32c32704ada1998fe6a3800ea.zip
QueryKit: Update not equal operator.
Diffstat (limited to 'Frameworks/QueryKit')
-rw-r--r--Frameworks/QueryKit/Source/QKQueryUtilities.m2
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";