Queries

Undocumented in source.

Members

Functions

exec
immutable(Answer) exec(string SQLcmd)

Perform SQL query to DB

execParams
immutable(Answer) execParams(QueryParams p)

Perform SQL query to DB

getNextNotify
Notify getNextNotify()

Returns null if no notifies was received

prepare
immutable(Result) prepare(string statementName, string sqlStatement)

Submits a request to create a prepared statement with the given parameters, and waits for completion.

sendPrepare
void sendPrepare(string statementName, string sqlStatement)

Sends a request to create a prepared statement with the given parameters, without waiting for completion.

sendQuery
void sendQuery(string SQLcmd)

Submits a command to the server without waiting for the result(s)

sendQueryParams
void sendQueryParams(QueryParams p)

Submits a command and separate parameters to the server without waiting for the result(s)

sendQueryPrepared
void sendQueryPrepared(QueryParams p)

Sends a request to execute a prepared statement with given parameters, without waiting for the result(s)

waitEndOf
bool waitEndOf(WaitType type, Duration timeout)

Waiting for completion of reading or writing Return: timeout not occured

Meta