ResultSetImpl

Helper implementation of ResultSet - throws Method not implemented for most of methods. Useful for driver implementations

class ResultSetImpl : ResultSet {}

Members

Functions

close
void close()
Undocumented in source. Be warned that the author may not have intended to support it.
findColumn
int findColumn(string columnName)
Undocumented in source. Be warned that the author may not have intended to support it.
first
bool first()
Undocumented in source. Be warned that the author may not have intended to support it.
getBoolean
bool getBoolean(int columnIndex)
Undocumented in source. Be warned that the author may not have intended to support it.
getBoolean
bool getBoolean(string columnName)
Undocumented in source. Be warned that the author may not have intended to support it.
getByte
byte getByte(int columnIndex)
Undocumented in source. Be warned that the author may not have intended to support it.
getByte
byte getByte(string columnName)
Undocumented in source. Be warned that the author may not have intended to support it.
getBytes
byte[] getBytes(int columnIndex)
Undocumented in source. Be warned that the author may not have intended to support it.
getBytes
byte[] getBytes(string columnName)
Undocumented in source. Be warned that the author may not have intended to support it.
getDate
std.datetime.Date getDate(string columnName)
Undocumented in source. Be warned that the author may not have intended to support it.
getDate
std.datetime.Date getDate(int columnIndex)
Undocumented in source. Be warned that the author may not have intended to support it.
getDateTime
std.datetime.DateTime getDateTime(int columnIndex)
Undocumented in source. Be warned that the author may not have intended to support it.
getDateTime
std.datetime.DateTime getDateTime(string columnName)
Undocumented in source. Be warned that the author may not have intended to support it.
getDouble
double getDouble(int columnIndex)
Undocumented in source. Be warned that the author may not have intended to support it.
getDouble
double getDouble(string columnName)
Undocumented in source. Be warned that the author may not have intended to support it.
getFetchSize
ulong getFetchSize()
Undocumented in source. Be warned that the author may not have intended to support it.
getFloat
float getFloat(int columnIndex)
Undocumented in source. Be warned that the author may not have intended to support it.
getFloat
float getFloat(string columnName)
Undocumented in source. Be warned that the author may not have intended to support it.
getInt
int getInt(int columnIndex)
Undocumented in source. Be warned that the author may not have intended to support it.
getInt
int getInt(string columnName)
Undocumented in source. Be warned that the author may not have intended to support it.
getLong
long getLong(int columnIndex)
Undocumented in source. Be warned that the author may not have intended to support it.
getLong
long getLong(string columnName)
Undocumented in source. Be warned that the author may not have intended to support it.
getMetaData
ResultSetMetaData getMetaData()
Undocumented in source. Be warned that the author may not have intended to support it.
getRow
int getRow()
Undocumented in source. Be warned that the author may not have intended to support it.
getShort
short getShort(int columnIndex)
Undocumented in source. Be warned that the author may not have intended to support it.
getShort
short getShort(string columnName)
Undocumented in source. Be warned that the author may not have intended to support it.
getStatement
Statement getStatement()
Undocumented in source. Be warned that the author may not have intended to support it.
getString
string getString(int columnIndex)
Undocumented in source. Be warned that the author may not have intended to support it.
getString
string getString(string columnName)
Undocumented in source. Be warned that the author may not have intended to support it.
getTime
std.datetime.TimeOfDay getTime(int columnIndex)
Undocumented in source. Be warned that the author may not have intended to support it.
getTime
std.datetime.TimeOfDay getTime(string columnName)
Undocumented in source. Be warned that the author may not have intended to support it.
getUbyte
ubyte getUbyte(int columnIndex)
Undocumented in source. Be warned that the author may not have intended to support it.
getUbyte
ubyte getUbyte(string columnName)
Undocumented in source. Be warned that the author may not have intended to support it.
getUbytes
ubyte[] getUbytes(int columnIndex)
Undocumented in source. Be warned that the author may not have intended to support it.
getUbytes
ubyte[] getUbytes(string columnName)
Undocumented in source. Be warned that the author may not have intended to support it.
getUint
uint getUint(int columnIndex)
Undocumented in source. Be warned that the author may not have intended to support it.
getUint
uint getUint(string columnName)
Undocumented in source. Be warned that the author may not have intended to support it.
getUlong
ulong getUlong(int columnIndex)
Undocumented in source. Be warned that the author may not have intended to support it.
getUlong
ulong getUlong(string columnName)
Undocumented in source. Be warned that the author may not have intended to support it.
getUshort
ushort getUshort(int columnIndex)
Undocumented in source. Be warned that the author may not have intended to support it.
getUshort
ushort getUshort(string columnName)
Undocumented in source. Be warned that the author may not have intended to support it.
getVariant
Variant getVariant(int columnIndex)
Undocumented in source. Be warned that the author may not have intended to support it.
getVariant
Variant getVariant(string columnName)
Undocumented in source. Be warned that the author may not have intended to support it.
isFirst
bool isFirst()
Undocumented in source. Be warned that the author may not have intended to support it.
isLast
bool isLast()
Undocumented in source. Be warned that the author may not have intended to support it.
isNull
bool isNull(int columnIndex)
Undocumented in source. Be warned that the author may not have intended to support it.
next
bool next()
Undocumented in source. Be warned that the author may not have intended to support it.
opApply
int opApply(int delegate(DataSetReader) dg)
Undocumented in source. Be warned that the author may not have intended to support it.
wasNull
bool wasNull()
Undocumented in source. Be warned that the author may not have intended to support it.

Inherited Members

From ResultSet

close
void close()
Undocumented in source.
first
bool first()
Undocumented in source.
isFirst
bool isFirst()
Undocumented in source.
isLast
bool isLast()
Undocumented in source.
next
bool next()
Undocumented in source.
getMetaData
ResultSetMetaData getMetaData()
Undocumented in source.
getStatement
Statement getStatement()
Undocumented in source.
getRow
int getRow()
Undocumented in source.
getFetchSize
ulong getFetchSize()
Undocumented in source.
getBoolean
bool getBoolean(int columnIndex)
Undocumented in source.
getUbyte
ubyte getUbyte(int columnIndex)
Undocumented in source.
getUbytes
ubyte[] getUbytes(int columnIndex)
Undocumented in source.
getBytes
byte[] getBytes(int columnIndex)
Undocumented in source.
getByte
byte getByte(int columnIndex)
Undocumented in source.
getShort
short getShort(int columnIndex)
Undocumented in source.
getUshort
ushort getUshort(int columnIndex)
Undocumented in source.
getInt
int getInt(int columnIndex)
Undocumented in source.
getUint
uint getUint(int columnIndex)
Undocumented in source.
getLong
long getLong(int columnIndex)
Undocumented in source.
getUlong
ulong getUlong(int columnIndex)
Undocumented in source.
getDouble
double getDouble(int columnIndex)
Undocumented in source.
getFloat
float getFloat(int columnIndex)
Undocumented in source.
getString
string getString(int columnIndex)
Undocumented in source.
getVariant
Variant getVariant(int columnIndex)
Undocumented in source.
getDateTime
DateTime getDateTime(int columnIndex)
Undocumented in source.
getDate
Date getDate(int columnIndex)
Undocumented in source.
getTime
TimeOfDay getTime(int columnIndex)
Undocumented in source.
isNull
bool isNull(int columnIndex)
Undocumented in source.
wasNull
bool wasNull()
Undocumented in source.
findColumn
int findColumn(string columnName)
Undocumented in source.
getBoolean
bool getBoolean(string columnName)
Undocumented in source.
getUbyte
ubyte getUbyte(string columnName)
Undocumented in source.
getUbytes
ubyte[] getUbytes(string columnName)
Undocumented in source.
getBytes
byte[] getBytes(string columnName)
Undocumented in source.
getByte
byte getByte(string columnName)
Undocumented in source.
getShort
short getShort(string columnName)
Undocumented in source.
getUshort
ushort getUshort(string columnName)
Undocumented in source.
getInt
int getInt(string columnName)
Undocumented in source.
getUint
uint getUint(string columnName)
Undocumented in source.
getLong
long getLong(string columnName)
Undocumented in source.
getUlong
ulong getUlong(string columnName)
Undocumented in source.
getDouble
double getDouble(string columnName)
Undocumented in source.
getFloat
float getFloat(string columnName)
Undocumented in source.
getString
string getString(string columnName)
Undocumented in source.
getDateTime
DateTime getDateTime(string columnName)
Undocumented in source.
getDate
Date getDate(string columnName)
Undocumented in source.
getTime
TimeOfDay getTime(string columnName)
Undocumented in source.
getVariant
Variant getVariant(string columnName)
Undocumented in source.
opApply
int opApply(int delegate(DataSetReader) dg)

to iterate through all rows in result set

Meta