summaryrefslogtreecommitdiff
path: root/vendor/PicoDb/Table.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/PicoDb/Table.php')
-rw-r--r--vendor/PicoDb/Table.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/vendor/PicoDb/Table.php b/vendor/PicoDb/Table.php
index 8a0ce644..60a1280c 100644
--- a/vendor/PicoDb/Table.php
+++ b/vendor/PicoDb/Table.php
@@ -379,6 +379,12 @@ class Table
$sql = sprintf('%s = ?', $this->db->escapeIdentifier($column));
break;
+ case 'neq':
+ case 'notequal':
+ case 'notequals':
+ $sql = sprintf('%s != ?', $this->db->escapeIdentifier($column));
+ break;
+
case 'gt':
case 'greaterthan':
$sql = sprintf('%s > ?', $this->db->escapeIdentifier($column));