| |
|
| java.lang.Object net.sourceforge.jtds.jdbc.JtdsResultSetMetaData
JtdsResultSetMetaData | public class JtdsResultSetMetaData implements ResultSetMetaData(Code) | | jTDS implementation of the java.sql.ResultSetMetaData interface.
Implementation notes:
- New simple implementation required by the new column info structure.
- Unlike the equivalent in the older jTDS, this version is generic and does
not need to know details of the TDS protocol.
author: Mike Hutchinson version: $Id: JtdsResultSetMetaData.java,v 1.9 2007/07/08 18:53:30 bheineman Exp $ |
Constructor Summary | |
| JtdsResultSetMetaData(ColInfo[] columns, int columnCount, boolean useLOBs) Construct ResultSetMetaData object over the current ColInfo array. |
JtdsResultSetMetaData | JtdsResultSetMetaData(ColInfo[] columns, int columnCount, boolean useLOBs)(Code) | | Construct ResultSetMetaData object over the current ColInfo array.
Parameters: columns - The current ColInfo row descriptor array. Parameters: columnCount - The number of visible columns. |
getColumn | ColInfo getColumn(int column) throws SQLException(Code) | | Return the column descriptor given a column index.
Parameters: column - The column index (from 1 .. n). The column descriptor as a ColInfo. throws: SQLException - |
isDefinitelyWritable | public boolean isDefinitelyWritable(int column) throws SQLException(Code) | | |
|
|
|