diff options
Diffstat (limited to 'vendor/PicoDb/Table.php')
-rw-r--r-- | vendor/PicoDb/Table.php | 6 |
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)); |