PreparedQueryImpl

@author <a href="mailto:julien@julienviet.com">Julien Viet</a>

Constructors

this
this(DbConnection conn, PreparedStatement ps)
Undocumented in source.

Members

Functions

batch
PreparedQuery batch(List!(Tuple) argsList, RowSetHandler handler)
Undocumented in source. Be warned that the author may not have intended to support it.
close
void close(AsyncVoidHandler handler)
Undocumented in source. Be warned that the author may not have intended to support it.
close
void close()
Undocumented in source. Be warned that the author may not have intended to support it.
closeCursor
void closeCursor(string cursorId, AsyncVoidHandler handler)
Undocumented in source. Be warned that the author may not have intended to support it.
cursor
Cursor cursor()
Undocumented in source. Be warned that the author may not have intended to support it.
cursor
Cursor cursor(Tuple args)
Undocumented in source. Be warned that the author may not have intended to support it.
execute
PreparedQuery execute(RowSetHandler handler)
Undocumented in source. Be warned that the author may not have intended to support it.
execute
PreparedQuery execute(Tuple args, RowSetHandler handler)
Undocumented in source. Be warned that the author may not have intended to support it.
execute
PreparedQuery execute(Tuple args, int fetch, string cursorId, bool suspended, bool singleton, QueryResultHandler!(R) resultHandler, ResponseHandler!(bool) handler)
Undocumented in source. Be warned that the author may not have intended to support it.
getPreparedStatement
PreparedStatement getPreparedStatement()
Undocumented in source. Be warned that the author may not have intended to support it.

Inherited Members

From PreparedQuery

getPreparedStatement
PreparedStatement getPreparedStatement()
Undocumented in source.
execute
PreparedQuery execute(RowSetHandler handler)

Calls {@link #execute(Tuple, Handler)} with an empty tuple argument.

execute
PreparedQuery execute(Tuple args, RowSetHandler handler)

Create a cursor with the provided {@code arguments}.

cursor
Cursor cursor()

@return create a query cursor with a {@code fetch} size and empty arguments

cursor
Cursor cursor(Tuple args)

Create a cursor with the provided {@code arguments}.

batch
PreparedQuery batch(List!(Tuple) argsList, RowSetHandler handler)

Execute a batch.

close
void close()

Close the prepared query and release its resources.

close
void close(AsyncVoidHandler completionHandler)

Like {@link #close()} but notifies the {@code completionHandler} when it's closed.

Meta