v0.3.5
Refactored and added 2 methods with 2 WHERE
conditions.
is_null(field)
now you can use the method forIS NULL
conditionis_not_null(field)
now you can use the method forIS NOT NULL
condition- added
not_null(field)
method as a synonym ofis_not_null(field)
- you can use those conditions with
where()
andhaving()
also, usagewhere([['phone', "IS NULL"]])
andwhere([['phone', "IS NOT NULL"]])
- you can use
like()
andnot_like()
methods with no brackets[]
- added
_print_errors
property and the same parameter for__init__()
(read README for details) - added
result_dict
parameter for__init__()
(read README for details) - change
?
to the corresponding values inget_sql()
method