MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / not_ilike

Method not_ilike

lib/sqlalchemy/sql/operators.py:1200–1217  ·  view source on GitHub ↗

implement the ``NOT ILIKE`` operator. This is equivalent to using negation with :meth:`.ColumnOperators.ilike`, i.e. ``~x.ilike(y)``. .. versionchanged:: 1.4 The ``not_ilike()`` operator is renamed from ``notilike()`` in previous releases. The previous name rema

(
        self, other: Any, escape: Optional[str] = None
    )

Source from the content-addressed store, hash-verified

1198 notlike = not_like
1199
1200 def not_ilike(
1201 self, other: Any, escape: Optional[str] = None
1202 ) -> ColumnOperators:
1203 """implement the ``NOT ILIKE`` operator.
1204
1205 This is equivalent to using negation with
1206 :meth:`.ColumnOperators.ilike`, i.e. ``~x.ilike(y)``.
1207
1208 .. versionchanged:: 1.4 The ``not_ilike()`` operator is renamed from
1209 ``notilike()`` in previous releases. The previous name remains
1210 available for backwards compatibility.
1211
1212 .. seealso::
1213
1214 :meth:`.ColumnOperators.ilike`
1215
1216 """
1217 return self.operate(not_ilike_op, other, escape=escape)
1218
1219 # deprecated 1.4; see #5435
1220 if TYPE_CHECKING:

Callers 6

not_ilike_opFunction · 0.45
test_not_ilikeMethod · 0.45
test_not_ilike_escapeMethod · 0.45
test_issue_9418Function · 0.45
operators.pyFile · 0.45

Calls 1

operateMethod · 0.95

Tested by 4

test_not_ilikeMethod · 0.36
test_not_ilike_escapeMethod · 0.36
test_issue_9418Function · 0.36