com.triactive.jdo.store
Class MySQLTypeInfo

java.lang.Object
  extended bycom.triactive.jdo.store.TypeInfo
      extended bycom.triactive.jdo.store.MySQLTypeInfo

class MySQLTypeInfo
extends TypeInfo

Represents the metadata of a MySQL data type.

Author:
Mike Martin

Field Summary
 boolean autoIncrement
          true indicates the type automatically increments for each new row inserted, false otherwise.
 boolean caseSensitive
          true indicates this data type is case-sensitive in comparisons, false otherwise.
 java.lang.String createParams
          Indicates the parameters used in defining columns of this type.
 short dataType
          The JDBC (SQL) data type number of this data type.
 boolean fixedPrecScale
          true indicates the type can be assigned a fixed scale value, such as for decimal or currency types, false otherwise.
 java.lang.String literalPrefix
          The prefix used to quote a literal of this data type; may be null.
 java.lang.String literalSuffix
          The suffix used to quote a literal of this data type; may be null.
 java.lang.String localTypeName
          Localized version of the DBMS-specific type name of this data type.
 short maximumScale
          The maximum supported scale value for this data type.
 short minimumScale
          The minimum supported scale value for this data type.
 int nullable
          Indicates whether null values are allowed for this data type.
 int numPrecRadix
          Indicates the numeric radix of this data type, which is usually 2 or 10.
 int precision
          The maximum precision/length allowed for this data type.
 short searchable
          Indicates searchability of this data type in terms of the kinds of SQL WHERE clauses that are allowed.
 java.lang.String typeName
          The DBMS-specific name for this data type.
 boolean unsignedAttribute
          true indicates the type is unsigned, false otherwise.
 
Constructor Summary
MySQLTypeInfo(java.sql.ResultSet rs)
          Constructs a type information object from the current row of the given result set.
 
Method Summary
static boolean areCompatibleTypes(int expected, int actual)
           
 boolean equals(java.lang.Object obj)
          Indicates whether some object is "equal to" this one.
static java.lang.String getJDBCTypeName(int type)
          Returns the string name of the Java constant that equals the given JDBC type number type.
 int hashCode()
          Returns a hash code value for this object.
 boolean isCompatibleWith(ColumnInfo colInfo)
          Indicates whether the type of a given database column is "compatible" with this type.
 java.lang.String toString()
          Returns the string representation of this object.
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

typeName

public java.lang.String typeName
The DBMS-specific name for this data type.


dataType

public short dataType
The JDBC (SQL) data type number of this data type.


precision

public int precision
The maximum precision/length allowed for this data type.


literalPrefix

public java.lang.String literalPrefix
The prefix used to quote a literal of this data type; may be null.


literalSuffix

public java.lang.String literalSuffix
The suffix used to quote a literal of this data type; may be null.


createParams

public java.lang.String createParams
Indicates the parameters used in defining columns of this type.


nullable

public int nullable
Indicates whether null values are allowed for this data type.

See Also:
DatabaseMetaData.typeNoNulls, DatabaseMetaData.typeNullable, DatabaseMetaData.typeNullableUnknown

caseSensitive

public boolean caseSensitive
true indicates this data type is case-sensitive in comparisons, false otherwise.


searchable

public short searchable
Indicates searchability of this data type in terms of the kinds of SQL WHERE clauses that are allowed.

See Also:
DatabaseMetaData.typePredNone, DatabaseMetaData.typePredChar, DatabaseMetaData.typePredBasic, DatabaseMetaData.typeSearchable

unsignedAttribute

public boolean unsignedAttribute
true indicates the type is unsigned, false otherwise.


fixedPrecScale

public boolean fixedPrecScale
true indicates the type can be assigned a fixed scale value, such as for decimal or currency types, false otherwise.


autoIncrement

public boolean autoIncrement
true indicates the type automatically increments for each new row inserted, false otherwise.


localTypeName

public java.lang.String localTypeName
Localized version of the DBMS-specific type name of this data type.


minimumScale

public short minimumScale
The minimum supported scale value for this data type.


maximumScale

public short maximumScale
The maximum supported scale value for this data type.


numPrecRadix

public int numPrecRadix
Indicates the numeric radix of this data type, which is usually 2 or 10.

Constructor Detail

MySQLTypeInfo

public MySQLTypeInfo(java.sql.ResultSet rs)
Constructs a type information object from the current row of the given result set. The ResultSet object passed must have been obtained from a call to DatabaseMetaData.getTypeInfo().

This method only retrieves the values from the current row; the caller is required to advance to the next row with ResultSet.next().

Parameters:
rs - The result set returned from DatabaseMetaData.getTypeInfo().
Method Detail

isCompatibleWith

public boolean isCompatibleWith(ColumnInfo colInfo)
Description copied from class: TypeInfo
Indicates whether the type of a given database column is "compatible" with this type.

Overrides:
isCompatibleWith in class TypeInfo

equals

public boolean equals(java.lang.Object obj)
Indicates whether some object is "equal to" this one. Two TypeInfo objects are considered equal if their typeName and dataType fields are equal.

Parameters:
obj - the reference object with which to compare
Returns:
true if this object is equal to the obj argument; false otherwise.

hashCode

public int hashCode()
Returns a hash code value for this object.

Returns:
a hash code value for this object.

toString

public java.lang.String toString()
Returns the string representation of this object.

Returns:
string representation of this object.

getJDBCTypeName

public static java.lang.String getJDBCTypeName(int type)
Returns the string name of the Java constant that equals the given JDBC type number type. JDBC type numbers are defined in Types.

If type is not equal to one of the known type numbers, the string "Unrecognized type (type)" is returned.

Parameters:
type - the JDBC type number.
Returns:
the string name of the corresponding constant from Types.

areCompatibleTypes

public static boolean areCompatibleTypes(int expected,
                                         int actual)


Copyright © 2001 TriActive, Inc. All Rights Reserved.