feat: expose escapeLikeParameter trough query builder

Signed-off-by: Robin Appelman <robin@icewind.nl>
This commit is contained in:
Robin Appelman 2024-02-14 16:04:35 +01:00
parent 0cab17bfe7
commit 658d2f7ea1

View file

@ -1336,4 +1336,8 @@ class QueryBuilder implements IQueryBuilder {
return $this->helper->quoteColumnName($alias);
}
public function escapeLikeParameter(string $parameter): string {
return $this->connection->escapeLikeParameter($parameter);
}
}