You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MySqlConnection conn =awaitMySqlConnection.connect(...);
Results results =await conn.query("SELECT FROM table WHERE col LIKE CONCAT('%', ?, '%')", [variable]);
how do I write a "like" with a parameter in a query?
... where col like "%?%"
with a given Parameter 'abc'
Leads to Exception (Length of parameters (1) does not match parameter count in query (0))
Christoph
The text was updated successfully, but these errors were encountered: