Returns the result of pinging the server.
Returns a new PreparedStatement instance based on the given sql query.
Returns a new PreparedStatement instance based on the given sql query. The returned prepared statement can be reused and applied with varying parameters.
Mysql prepared statements are stateful, that is, they allocate resources on the mysql server. The allocations are managed by a finagle-mysql connection. Closing the client implicitly closes all outstanding PreparedStatements.
Returns the result of executing the sql
query on the server.
Sends the given sql
to the server and maps each resulting row to
f
, a function from Row => T.
Sends the given sql
to the server and maps each resulting row to
f
, a function from Row => T. If no ResultSet is returned, the function
returns an empty Seq.