All Packages Class Hierarchy This Package Previous Next Index
Class com.imaginary.sql.msql.MsqlResultSetMetaData
java.lang.Object
|
+----com.imaginary.sql.msql.MsqlResultSetMetaData
- public class MsqlResultSetMetaData
- extends Object
- implements ResultSetMetaData, Runnable
The MsqlResultSetMetaData class is the mSQL implementation of the
JDBC ResultSetMetaData interface. It should never be referenced directly.
You should instead use the JDBC API.
Last modified $Date: 1999/01/22 05:33:44 $
- Version:
- $Revision: 1.1.2.1.2.1 $
- Author:
- George Reese (borg@imaginary.com)
-
getCatalogName(int)
-
-
getColumnCount()
-
-
getColumnDisplaySize(int)
-
-
getColumnLabel(int)
-
-
getColumnName(int)
-
-
getColumnType(int)
-
-
getColumnTypeName(int)
-
-
getPrecision(int)
-
-
getScale(int)
-
-
getSchemaName(int)
-
-
getTableName(int)
-
-
isAutoIncrement(int)
-
-
isCaseSensitive(int)
-
-
isCurrency(int)
-
-
isDefinitelyWritable(int)
-
-
isNullable(int)
-
-
isReadOnly(int)
-
-
isSearchable(int)
-
-
isSigned(int)
-
-
isWritable(int)
-
-
run()
-
run
public void run()
getColumnCount
public int getColumnCount() throws SQLException
isAutoIncrement
public boolean isAutoIncrement(int column) throws SQLException
isCaseSensitive
public boolean isCaseSensitive(int column) throws SQLException
isSearchable
public boolean isSearchable(int column) throws SQLException
isCurrency
public boolean isCurrency(int column) throws SQLException
isNullable
public int isNullable(int column) throws SQLException
isSigned
public boolean isSigned(int column) throws SQLException
getColumnDisplaySize
public int getColumnDisplaySize(int column) throws SQLException
getColumnLabel
public String getColumnLabel(int column) throws SQLException
getColumnName
public String getColumnName(int column) throws SQLException
getSchemaName
public String getSchemaName(int column) throws SQLException
getPrecision
public int getPrecision(int column) throws SQLException
getScale
public int getScale(int column) throws SQLException
getTableName
public String getTableName(int column) throws SQLException
getCatalogName
public String getCatalogName(int column) throws SQLException
getColumnType
public int getColumnType(int column) throws SQLException
getColumnTypeName
public String getColumnTypeName(int column) throws SQLException
isReadOnly
public boolean isReadOnly(int column) throws SQLException
isWritable
public boolean isWritable(int column) throws SQLException
isDefinitelyWritable
public boolean isDefinitelyWritable(int column) throws SQLException
All Packages Class Hierarchy This Package Previous Next Index