org.datanucleus.store.rdbms.schema
Class SQLiteTypeInfo

java.lang.Object
  extended by org.datanucleus.store.rdbms.schema.SQLTypeInfo
      extended by org.datanucleus.store.rdbms.schema.SQLiteTypeInfo
All Implemented Interfaces:
org.datanucleus.store.schema.StoreSchemaData

public class SQLiteTypeInfo
extends SQLTypeInfo

SQL Type info for SQLite datastores.


Field Summary
 
Fields inherited from class org.datanucleus.store.rdbms.schema.SQLTypeInfo
allowsPrecisionSpec, autoIncrement, caseSensitive, createParams, dataType, fixedPrecScale, literalPrefix, literalSuffix, localTypeName, maximumScale, minimumScale, nullable, numPrecRadix, precision, searchable, typeName, unsignedAttribute
 
Constructor Summary
SQLiteTypeInfo(ResultSet rs)
          Constructs a type information object from the current row of the given result set.
SQLiteTypeInfo(String typeName, short dataType, int precision, String literalPrefix, String literalSuffix, String createParams, int nullable, boolean caseSensitive, short searchable, boolean unsignedAttribute, boolean fixedPrecScale, boolean autoIncrement, String localTypeName, short minimumScale, short maximumScale, int numPrecRadix)
           
 
Method Summary
 boolean isCompatibleWith(RDBMSColumnInfo colInfo)
          Convenience method for returning if this type is compatible with the provided column.
 
Methods inherited from class org.datanucleus.store.rdbms.schema.SQLTypeInfo
addProperty, equals, getCreateParams, getDataType, getLiteralPrefix, getLiteralSuffix, getLocalTypeName, getMaximumScale, getMinimumScale, getNullable, getNumPrecRadix, getPrecision, getProperty, getSearchable, getTypeName, hashCode, isAllowsPrecisionSpec, isAutoIncrement, isCaseSensitive, isFixedPrecScale, isUnsignedAttribute, setAllowsPrecisionSpec, setLocalTypeName, setTypeName, toString
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

SQLiteTypeInfo

public SQLiteTypeInfo(ResultSet rs)
Constructs a type information object from the current row of the given result set.

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

SQLiteTypeInfo

public SQLiteTypeInfo(String typeName,
                      short dataType,
                      int precision,
                      String literalPrefix,
                      String literalSuffix,
                      String createParams,
                      int nullable,
                      boolean caseSensitive,
                      short searchable,
                      boolean unsignedAttribute,
                      boolean fixedPrecScale,
                      boolean autoIncrement,
                      String localTypeName,
                      short minimumScale,
                      short maximumScale,
                      int numPrecRadix)
Method Detail

isCompatibleWith

public boolean isCompatibleWith(RDBMSColumnInfo colInfo)
Description copied from class: SQLTypeInfo
Convenience method for returning if this type is compatible with the provided column. Compares the data type of each record, and returns true if the types are equivalent. For example one could be VARCHAR, and the other LONGVARCHAR so they both store string data, and hence they are compatible.

Overrides:
isCompatibleWith in class SQLTypeInfo
Parameters:
colInfo - The column
Returns:
Whether they are considered compatible


Copyright © 2012. All Rights Reserved.