pub fn sqlite3_strlike(
pattern: impl Into<Vec<u8>>,
input: impl Into<Vec<u8>>,
escape: impl Into<char>,
) -> Result<bool>Expand description
Perform an SQL LIKE operation. The escape parameter can be 0 or any ASCII character. If the escape parameter is not ASCII, it is treated as though 0 were specified (no escape).
Requires SQLite 3.10.0.