How do escape a MySQL LIKE statement in node-mysql?
Something along the lines of
\"SELECT * FROM card WHERE name LIKE \'%\" + connection.escape(req.b
i've had success with something like
"SELECT * FROM card WHERE name LIKE " + connection.escape('%'+req.body.search+'%')