Uses of Class
net.sourceforge.jtds.jdbc.ColInfo
Packages that use ColInfo
-
Uses of ColInfo in net.sourceforge.jtds.jdbc
Fields in net.sourceforge.jtds.jdbc declared as ColInfoModifier and TypeFieldDescriptionprotected ColInfo[]JtdsStatement.colMetaDataThe cached column meta data.private ColInfo[]ProcEntry.colMetaDataColumn meta data (Sybase only).protected ColInfo[]JtdsResultSet.columnsThe array of column descriptors.private final ColInfo[]JtdsResultSetMetaData.columnsprivate ColInfo[]TdsCore.columnsThe array of column meta data objects for this result set.private ColInfo[]TdsCore.computedColumnsThe array of column meta data objects for the computed columns of this result set.(package private) ColInfo[]TdsCore.TdsToken.dynamParamInfoThe dynamic parameters from the last TDS_DYNAMIC token.Methods in net.sourceforge.jtds.jdbc that return ColInfoModifier and TypeMethodDescriptionprotected ColInfo[]Copy an existing result set column descriptor array.ColInfo[]ProcEntry.getColMetaData()Retrieves the column meta data array.(package private) ColInfoJtdsResultSetMetaData.getColumn(int column) Return the column descriptor given a column index.protected ColInfo[]JtdsResultSet.getColumns()Retrieve the column descriptor array.(package private) ColInfo[]TdsCore.getColumns()Retrieve the current result set column descriptors.(package private) ColInfo[]TdsCore.getComputedColumns()Retrieve the current computed result set column descriptors, if any.Methods in net.sourceforge.jtds.jdbc with parameters of type ColInfoModifier and TypeMethodDescriptionprotected static ParamInfoCachedResultSet.buildParameter(int pos, ColInfo info, Object value, boolean isUnicode) Creates a parameter object for an UPDATE, DELETE or INSERT statement.protected ColInfo[]Copy an existing result set column descriptor array.(package private) static voidTdsData.fillInType(ColInfo ci) Fill in the TDS native type code and all other fields for aColInfoinstance with the JDBC type set.(package private) static intTdsData.getCollation(ResponseStream in, ColInfo ci) TDS 8 supplies collation information for character data types.protected static intJtdsResultSet.getColumnCount(ColInfo[] columns) Retrieve the column count excluding hidden columns(package private) static booleanTdsData.isCollation(ColInfo ci) Retrieve the collation status of the column.(package private) static booleanTdsData.isCurrency(ColInfo ci) Retrieve the currency status of the column.(package private) static booleanTdsData.isSearchable(ColInfo ci) Retrieve the searchable status of the column.(package private) static booleanRetrieve the signed status of the column.(package private) static booleanDetermines whether the column is Unicode encoded.(package private) static ObjectTdsData.readData(JtdsConnection connection, ResponseStream in, ColInfo ci) Read the TDS data item from the Response Stream.(package private) static intTdsData.readType(ResponseStream in, ColInfo ci) Read the TDS datastream and populate the ColInfo parameter with data type and related information.(package private) voidJtdsPreparedStatement.setColMetaData(ColInfo[] value) Update the cached column meta data information.voidProcEntry.setColMetaData(ColInfo[] colMetaData) Sets the column meta data.(package private) static voidTdsData.setColumnCharset(ColInfo ci, JtdsConnection connection) Set thecharsetInfofield ofciaccording to the value of itscollationfield.(package private) voidTdsCore.setColumns(ColInfo[] columns) Sets the column meta data.Constructors in net.sourceforge.jtds.jdbc with parameters of type ColInfoModifierConstructorDescription(package private)CachedResultSet(JtdsStatement statement, ColInfo[] columns, Object[] data) Creates a cached result set containing one row.(package private)JtdsResultSet(JtdsStatement statement, int resultSetType, int concurrency, ColInfo[] columns) Construct a simple result set from a statement, metadata or generated keys.(package private)JtdsResultSetMetaData(ColInfo[] columns, int columnCount, boolean useLOBs) Construct ResultSetMetaData object over the current ColInfo array.(package private)Construct a parameter based on a result set column.