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)

Method Index

 o getCatalogName(int)
 o getColumnCount()
 o getColumnDisplaySize(int)
 o getColumnLabel(int)
 o getColumnName(int)
 o getColumnType(int)
 o getColumnTypeName(int)
 o getPrecision(int)
 o getScale(int)
 o getSchemaName(int)
 o getTableName(int)
 o isAutoIncrement(int)
 o isCaseSensitive(int)
 o isCurrency(int)
 o isDefinitelyWritable(int)
 o isNullable(int)
 o isReadOnly(int)
 o isSearchable(int)
 o isSigned(int)
 o isWritable(int)
 o run()

Methods

 o run
 public void run()
 o getColumnCount
 public int getColumnCount() throws SQLException
 o isAutoIncrement
 public boolean isAutoIncrement(int column) throws SQLException
 o isCaseSensitive
 public boolean isCaseSensitive(int column) throws SQLException
 o isSearchable
 public boolean isSearchable(int column) throws SQLException
 o isCurrency
 public boolean isCurrency(int column) throws SQLException
 o isNullable
 public int isNullable(int column) throws SQLException
 o isSigned
 public boolean isSigned(int column) throws SQLException
 o getColumnDisplaySize
 public int getColumnDisplaySize(int column) throws SQLException
 o getColumnLabel
 public String getColumnLabel(int column) throws SQLException
 o getColumnName
 public String getColumnName(int column) throws SQLException
 o getSchemaName
 public String getSchemaName(int column) throws SQLException
 o getPrecision
 public int getPrecision(int column) throws SQLException
 o getScale
 public int getScale(int column) throws SQLException
 o getTableName
 public String getTableName(int column) throws SQLException
 o getCatalogName
 public String getCatalogName(int column) throws SQLException
 o getColumnType
 public int getColumnType(int column) throws SQLException
 o getColumnTypeName
 public String getColumnTypeName(int column) throws SQLException
 o isReadOnly
 public boolean isReadOnly(int column) throws SQLException
 o isWritable
 public boolean isWritable(int column) throws SQLException
 o isDefinitelyWritable
 public boolean isDefinitelyWritable(int column) throws SQLException

All Packages  Class Hierarchy  This Package  Previous  Next  Index