| Database Toolbox | ![]() |
Construct resultset metadata object
Syntax
rsmeta = rsmd(rset) rsmeta = rsmd(curs)
Description
rsmeta = rsmd(rset)
creates a resultset metadata object rsmeta, for the resultset object rset, or the cursor object curs, where rset was created using resultset, and curs was created using exec or fetch. Get properties of rsmeta using get, or make calls to rsmeta using your own Java-based applications.
Examples
rsmeta=rsmd(rset)
rsmeta =
Handle: [1x1 sun.jdbc.odbc.JdbcOdbcResultSetMetaData]
Use v = get(rsmeta) and v.property to see properties of the resultset metadata object.
| rows | set | ![]() |