public class SelectResultSetImpl extends ResultSetImpl
Modifier and Type | Method and Description |
---|---|
void |
close() |
static SelectResultSetImpl |
create(Expr[] exprs) |
int |
findColumnIndex(java.lang.String name)
Returns the column index with the given name.
|
long |
getDate(int index) |
double |
getDouble(int index)
Returns a double value from this column.
|
int |
getInt(int index) |
long |
getLong(int index) |
java.lang.String |
getString(int index)
Returns the string value of the given index.
|
boolean |
next() |
boolean |
wasNull()
Returns true if the last column read was null.
|
public static SelectResultSetImpl create(Expr[] exprs)
public boolean next() throws java.sql.SQLException
next
in class ResultSetImpl
java.sql.SQLException
public int findColumnIndex(java.lang.String name) throws java.sql.SQLException
findColumnIndex
in class ResultSetImpl
java.sql.SQLException
public java.lang.String getString(int index) throws java.sql.SQLException
getString
in class ResultSetImpl
java.sql.SQLException
public int getInt(int index) throws java.sql.SQLException
getInt
in class ResultSetImpl
java.sql.SQLException
public long getLong(int index) throws java.sql.SQLException
getLong
in class ResultSetImpl
java.sql.SQLException
public double getDouble(int index) throws java.sql.SQLException
getDouble
in class ResultSetImpl
java.sql.SQLException
public long getDate(int index) throws java.sql.SQLException
getDate
in class ResultSetImpl
java.sql.SQLException
public boolean wasNull()
wasNull
in class ResultSetImpl
public void close()
close
in class ResultSetImpl