Implemented by
[scriptable, uuid(eee6f7c9-5586-4eaf-b35c-dca987c4ffd1)]
interface mozIStorageStatementWrapper : nsISupports
Attributes
The parameters; these can be set in lieu of using the call notation on this.
readonly attribute
mozIStorageStatementParams
params
The current row. Throws an exception if no row is currently available. Useful only from script. The value of this is only valid while the statement is still executing, and is still on the appropriate row.
readonly attribute
mozIStorageStatementRow
row
The statement that is wrapped.
readonly attribute
mozIStorageStatement
statement
Methods
void
execute()
Initialize this wrapper with aStatement.
void
initialize(in mozIStorageStatement aStatement)
Step, reset, and execute the wrapped statement.
void
reset()
boolean
step()
Compare to: