Extension SDK 9.0.5

Uses of Class
oracle.jdeveloper.cm.ds.db.DataType

Packages that use DataType
oracle.jdeveloper.cm.ds.db Contains a metadata API for describing database objects. 
 

Uses of DataType in oracle.jdeveloper.cm.ds.db
 

Fields in oracle.jdeveloper.cm.ds.db declared as DataType
static DataType JdbcDatabase.ANSI_CHARACTER
           
static DataType JdbcDatabase.ANSI_CHARACTER_VARYING
           
static DataType JdbcDatabase.ANSI_NUMERIC
           
static DataType JdbcDatabase.ANSI_DECIMAL
           
static DataType JdbcDatabase.ANSI_INTEGER
           
static DataType JdbcDatabase.ANSI_INT
           
static DataType JdbcDatabase.ANSI_SMALLINT
           
static DataType JdbcDatabase.ANSI_FLOAT
           
static DataType JdbcDatabase.ANSI_DOUBLE_PRECISION
           
static DataType JdbcDatabase.ANSI_REAL
           
static DataType JdbcDatabase.ANSI_DATE
           
static DataType JdbcDatabase.ANSI_TIME
           
 

Methods in oracle.jdeveloper.cm.ds.db that return DataType
 DataType Column.getDataType()
          Gets the datatype of the Column.
protected  DataType AbstractDBObjectProvider.findSupportedDataType(java.lang.String typeName)
           
 DataType[] AbstractDBObjectProvider.listSupportedDataTypes()
           
 DataType AbstractDBObjectProvider.getDataType(java.lang.String typeName)
           
static DataType DataType.createCharacterDataType(java.lang.String typeName, long maxSize, boolean sizeSupported, boolean needSize)
          Creates a new DataType representing character data.
static DataType DataType.createCharacterDataType(java.lang.String typeName, long maxSize)
          Creates a new DataType representing character data.
static DataType DataType.createNumericType(java.lang.String typeName, long maxPrecision, boolean needPrecision, long minScale, long maxScale)
          Creates a new DataType representing numeric data.
static DataType DataType.createBinaryType(java.lang.String typeName, long maxSize, boolean sizeSupported, boolean needSize)
          Creates a new DataType representing binary data.
static DataType DataType.createBinaryType(java.lang.String typeName, long maxSize)
          Creates a new DataType representing binary data.
static DataType DataType.createDatetimeType(java.lang.String typeName)
          Creates a new DataType representing date/time data.
static DataType DataType.createDatetimeType(java.lang.String typeName, long maxSize)
          Creates a new DataType representing date/time data.
static DataType DataType.createRowidType(java.lang.String typeName, long maxSize)
          Creates a new DataType representing rowid data.
static DataType DataType.createLOBType(java.lang.String typeName, long maxSize)
          Creates a new DataType representing LOB data.
static DataType DataType.createUserType(java.lang.String typeName)
          Creates a new DataType representing a user-defined type.
static DataType DataType.createUserType(java.lang.String typeName, boolean allowPrec, boolean precisionRequired, boolean allowScale, long maxPrecision, long minScale, long maxScale)
          Creates a new DataType representing a user-defined type.
 DataType[] DBObjectProvider.listSupportedDataTypes()
          Retrieves the list of datatypes supported by this provider.
 DataType DBObjectProvider.getDataType(java.lang.String typeName)
          Retrieves the datatype represented by a specific name.
 

Methods in oracle.jdeveloper.cm.ds.db with parameters of type DataType
 void Column.setDataType(DataType dataType)
          Sets the datatype of the Column.
protected  void AbstractDBObjectProvider.initializeDataTypes(DataType[] types)
          Initialized the list of supported DataTypes.
protected  void AbstractDBObjectProvider.addDataType(DataType type)
          Adds a supported datatype.
protected  void AbstractDBObjectProvider.removeDataType(DataType type)
          Removes a supported datatype.
protected  boolean DataType.equalsImpl(DataType target)
           
 

Constructors in oracle.jdeveloper.cm.ds.db with parameters of type DataType
Column(java.lang.String name, DataType dataType)
          Constructs a new Column with the specified name and datatype.
 


Extension SDK

 

Copyright © 1997, 2004, Oracle. All rights reserved.