query package:mysql-haskell

Execute a MySQL query which return a result-set with parameters. Note that you must fully consumed the result-set before start a new query on the same MySQLConn, or an UnconsumedResultSet will be thrown. if you want to skip the result-set, use skipToEof.
Query string type borrowed from mysql-simple. This type is intended to make it difficult to construct a SQL query by concatenating string fragments, as that is an extremely common way to accidentally introduce SQL injection vulnerabilities into an application. This type is an instance of IsString, so the easiest way to construct a query is to enable the OverloadedStrings language extension and then simply write the query in double quotes. The underlying type is a ByteString, and literal Haskell strings that contain Unicode characters will be correctly transformed to UTF-8.
Execute prepared query statement with parameters, expecting resultset. Rules about UnconsumedResultSet applied here too.
Vector version of queryStmt
Vector version of query.
Vector version of query_.
Execute a MySQL query which return a result-set.
A type that may be used as a single parameter to a SQL query. Inspired from mysql-simple.
This's query parser for statement based binlog's query event, it's actually not used in row based binlog.
This's the query event in row based binlog.
0x03