Row

Members

Aliases

getAs
alias getAs = bind
Undocumented in source.
getBoolean
alias getBoolean = Tuple.getBoolean
Undocumented in source.
getBuffer
alias getBuffer = Tuple.getBuffer
Undocumented in source.
getDouble
alias getDouble = Tuple.getDouble
Undocumented in source.
getFloat
alias getFloat = Tuple.getFloat
Undocumented in source.
getInteger
alias getInteger = Tuple.getInteger
Undocumented in source.
getLong
alias getLong = Tuple.getLong
Undocumented in source.
getShort
alias getShort = Tuple.getShort
Undocumented in source.
getString
alias getString = Tuple.getString
Undocumented in source.
getValue
alias getValue = Tuple.getValue
Undocumented in source.
opIndex
alias opIndex = getValue
Undocumented in source.

Functions

bind
T bind()
Undocumented in source. Be warned that the author may not have intended to support it.
bind
T bind()
Undocumented in source. Be warned that the author may not have intended to support it.
bindObject
void bindObject(T obj)
Undocumented in source. Be warned that the author may not have intended to support it.
bindObject
void bindObject(T obj)
Undocumented in source. Be warned that the author may not have intended to support it.
getBoolean
bool getBoolean(string name)

Get a boolean value at {@code pos}.

getBuffer
byte[] getBuffer(string name)

Get a buffer value at {@code pos}.

getColumnIndex
int getColumnIndex(string name)

Get a column position for the given column {@code name}.

getColumnName
string getColumnName(int pos)

Get a column name at {@code pos}.

getDouble
double getDouble(string name)

Get a double value at {@code pos}.

getFloat
float getFloat(string name)

Get a float value at {@code pos}.

getInteger
int getInteger(string name)

Get an integer value at {@code pos}.

getLong
long getLong(string name)

Get a long value at {@code pos}.

getShort
short getShort(string name)

Get a short value at {@code pos}.

getString
string getString(string name)

Get a string value at {@code pos}.

getValue
Variant getValue(string name)

Get an object value at {@code pos}.

Inherited Members

From Tuple

tuple
Tuple tuple()

@return a new empty tuple

of
Tuple of(Args elts)

Create a tuple of an arbitrary number of elements.

getValue
Variant getValue(int pos)
opIndex
alias opIndex = getValue

Get an object value at {@code pos}.

getBoolean
bool getBoolean(int pos)

Get a boolean value at {@code pos}.

getShort
short getShort(int pos)

Get a short value at {@code pos}.

getInteger
int getInteger(int pos)

Get an integer value at {@code pos}.

getLong
long getLong(int pos)

Get a long value at {@code pos}.

getFloat
float getFloat(int pos)

Get a float value at {@code pos}.

getDouble
double getDouble(int pos)

Get a double value at {@code pos}.

getString
string getString(int pos)

Get a string value at {@code pos}.

getBuffer
byte[] getBuffer(int pos)

Get a buffer value at {@code pos}.

addValue
Tuple addValue(Variant value)

Add an object value at the end of the tuple.

size
int size()

@return the tuple size

clear
void clear()
Undocumented in source.

Meta