All Packages Class Hierarchy This Package Previous Next Index
Class com.imaginary.sql.msql.MsqlColumn
com.imaginary.sql.msql.MsqlColumn
- public class MsqlColumn
This class holds meta information about mSQL columns in a result set.
Last modified $Date: 1999/07/09 23:16:25 $
- Version:
- $Revision: 1.1.2.1.2.2 $
- Author:
- George Reese (borg@imaginary.com)
-
getColumnName()
-
-
getLength()
-
-
getMsqlType()
-
-
getSQLType()
-
-
getTableName()
-
-
isNullable()
-
-
isPrimaryKey()
-
getColumnName
public String getColumnName()
- Returns:
- the name of this column
getLength
public int getLength()
- Returns:
- the maximum length for this column
getMsqlType
public int getMsqlType()
- Returns:
- the mSQL type for this column from
MsqlTypes
- See Also:
- MsqlTypes
getSQLType
public int getSQLType()
- Returns:
- the SQL type for this column from
Types
- See Also:
- Types
getTableName
public String getTableName()
- Returns:
- the name of the table from which this column comes
isNullable
public boolean isNullable()
- Returns:
- true if this column is nullable, false otherwise
isPrimaryKey
public boolean isPrimaryKey()
- Returns:
- true if this column is part of a unique index
All Packages Class Hierarchy This Package Previous Next Index