Module mysql.prepared

Use a DB via SQL prepared statements.

Functions

NameDescription
prepare(conn, sql) Submit an SQL command to the server to be compiled into a prepared statement.
prepareFunction(conn, name, numArgs) Convenience function to create a prepared statement which calls a stored function.
prepareProcedure(conn, name, numArgs) Convenience function to create a prepared statement which calls a stored procedure.

Structs

NameDescription
ParameterSpecialization A struct to represent specializations of prepared statement parameters.
Prepared Encapsulation of a prepared statement.
PreparedImpl This is the internal implementation of Prepared. It is not intended to be used directly, as Prepared wraps a PreparedImpl with RefCounted, and offers access to the public PreparedImpl members via "alias this".

Aliases

NameTypeDescription
PSN ParameterSpecialization A struct to represent specializations of prepared statement parameters.