MySQLConnectionImpl

Constructors

this
this(MySQLConnectionFactory factory, DbConnection conn)
Undocumented in source.

Members

Functions

changeUser
MySQLConnection changeUser(MySQLConnectOptions options, AsyncVoidHandler handler)
Undocumented in source. Be warned that the author may not have intended to support it.
dumpDebug
MySQLConnection dumpDebug(AsyncVoidHandler handler)
Undocumented in source. Be warned that the author may not have intended to support it.
escapeIdentifier
string escapeIdentifier(string identifier)
Undocumented in source. Be warned that the author may not have intended to support it.
escapeLiteral
string escapeLiteral(string literal)
Undocumented in source. Be warned that the author may not have intended to support it.
getInternalStatistics
MySQLConnection getInternalStatistics(AsyncResultHandler!(string) handler)
Undocumented in source. Be warned that the author may not have intended to support it.
handleNotification
void handleNotification(int processId, string channel, string payload)
Undocumented in source. Be warned that the author may not have intended to support it.
ping
MySQLConnection ping(AsyncVoidHandler handler)
Undocumented in source. Be warned that the author may not have intended to support it.
prepareNamedQuery
NamedQuery prepareNamedQuery(string sql)
Undocumented in source. Be warned that the author may not have intended to support it.
prepareNamedQueryAsync
Future!NamedQuery prepareNamedQueryAsync(string sql)
Undocumented in source. Be warned that the author may not have intended to support it.
resetConnection
MySQLConnection resetConnection(AsyncVoidHandler handler)
Undocumented in source. Be warned that the author may not have intended to support it.
setOption
MySQLConnection setOption(MySQLSetOption option, AsyncVoidHandler handler)
Undocumented in source. Be warned that the author may not have intended to support it.
specifySchema
MySQLConnection specifySchema(string schemaName, AsyncVoidHandler handler)
Undocumented in source. Be warned that the author may not have intended to support it.

Static functions

connect
void connect(MySQLConnectOptions options, AsyncResultHandler!(MySQLConnection) handler)
Undocumented in source. Be warned that the author may not have intended to support it.

Inherited Members

From MySQLConnection

ping
MySQLConnection ping(AsyncVoidHandler handler)

Send a PING command to check if the server is alive.

specifySchema
MySQLConnection specifySchema(string schemaName, AsyncVoidHandler handler)

Send a INIT_DB command to change the default schema of the connection.

getInternalStatistics
MySQLConnection getInternalStatistics(AsyncResultHandler!(string) handler)

Send a STATISTICS command to get a human readable string of the server internal status.

setOption
MySQLConnection setOption(MySQLSetOption option, AsyncVoidHandler handler)

Send a SET_OPTION command to set options for the current connection.

resetConnection
MySQLConnection resetConnection(AsyncVoidHandler handler)

Send a RESET_CONNECTION command to reset the session state.

dumpDebug
MySQLConnection dumpDebug(AsyncVoidHandler handler)

Send a DEBUG command to dump debug information to the server's stdout.

changeUser
MySQLConnection changeUser(MySQLConnectOptions options, AsyncVoidHandler handler)

Send a CHANGE_USER command to change the user of the current connection, this operation will also reset connection state.

Meta