NpsResultSet class

Indicates the data list of database result set. It is generated through inquiring database statement executed by NpsPreparedStatement. Currently, large object (CLOB, BLOB, LONG) and array is not supported.

Example code:
var pstmt = session.PrepareStatement("select sysdate from dual");
var rs = pstmt.ExecuteQuery();
while(rs.Next())
{
     out.Info(rs.GetDate(1));
}

top

Method Summary