Skip Headers

Oracle9i Supplied Java Packages Reference
Release 2 (9.2)

Part Number A96609-01
Go To Documentation Library
Home
Go To Product List
Book List
Go To Table Of Contents
Contents
Go To Index
Index

Master Index

Feedback

Go to previous page Go to next page

5
Package oracle.ODCI

This chapter describes Java language ODCI (Oracle Data Cartridge Interface) extensible indexing interfaces that are provided in package oracle.ODCI.

This chapter includes these sections:


Package oracle.ODCI Description

In addition to the efficient and secure management of data ordered under the relational model, Oracle supports data organized under the object model. Object types and other Oracle database features, such as large objects (LOBs), external procedures, extensible indexing, and query optimization, can be used to build reusable server-based components called data cartridges.

Within the framework of the Oracle Extensibility Architecture, data cartridges are a pure object-oriented mechanism for extending the capabilities of the Oracle server.

See Also:

Oracle9i Data Cartridge Developer's Guide for information about creating and using data cartridges.

Installing ODCI.jar and CartridgeServices.jar Files

The ODCI.jar and CartridgeServices.jar files must be installed into the SYS schema in order to use the Java classes described in this chapter.

If you installed the Java option, then you must install the ODCI.jar and CartridgeServices.jar files. You do not need to perform this task if you did not install the Java option.

To install ODCI.jar and CartridgeServices.jar files, run the following commands from the command line:

loadjava -user sys/PASSWORD -resolve -synonym -grant public 
-verbose ORACLE_HOME/vobs/jlib/CartridgeServices.jar

loadjava -user sys/PASSWORD -resolve -synonym -grant public
-verbose ORACLE_HOME/vobs/jlib/ODCI.jar

Substitute the SYS password for PASSWORD, and substitute the Oracle home directory for ORACLE_HOME. These commands install the classes and create the synonyms in the SYS schema.


Package oracle.ODCI Summary

Table 5-1  Package oracle.ODCI summary
Class Description

ODCIArgDesc

Argument description

ODCIArgDescList

Argument description list

ODCIArgDescRef

Reference argument description

ODCIColInfo

Column info

ODCIColInfoList

Column info list

ODCIColInfoRef

Column info reference

ODCICost

Cost

ODCICostRef

Cost reference

ODCIEnv

Environment

ODCIEnvRef

Environment reference

ODCIFuncInfo

Function info

ODCIFuncInfoRef

Function info reference

ODCIIndexCtx

Index context

ODCIIndexCtxRef

Index context reference

ODCIIndexInfo

Index info

ODCIQueryInfoRef

Quaery info reference

ODCIRidList

Rid list

ODCIStatsOptions

Stats options

ODCIStatsOptionsRef

Stats options reference


ODCIArgDesc

oracle.ODCI.ODCIArgDesc

public class ODCIArgDesc


Fields

_SQL_NAME

public static final java.lang.String _SQL_NAME

_SQL_TYPECODE

public static final int _SQL_TYPECODE


Constructors

ODCIArgDesc

public ODCIArgDesc()

Methods

getORADataFactory

public static oracle.sql.ORADataFactory getORADataFactory()

toDatum

public oracle.sql.Datum toDatum(java.sql.Connection c)
                         throws java.sql.SQLException

create

public oracle.sql.ORAData create(oracle.sql.Datum d,
                                 int sqlType)
                          throws java.sql.SQLException
getArgType
public java.math.BigDecimal getArgType()
                                throws java.sql.SQLException

setArgType

public void setArgType(java.math.BigDecimal ArgType)
                throws java.sql.SQLException

getTableName

public java.lang.String getTableName()
                              throws java.sql.SQLException

setTableName

public void setTableName(java.lang.String TableName)
                  throws java.sql.SQLException

getTableSchema

public java.lang.String getTableSchema()
                                throws java.sql.SQLException

setTableSchema

public void setTableSchema(java.lang.String TableSchema)
                    throws java.sql.SQLException

getColName

public java.lang.String getColName()
                            throws java.sql.SQLException

setColName

public void setColName(java.lang.String ColName)
                throws java.sql.SQLException

getTablePartitionLower

public java.lang.String getTablePartitionLower()
                                        throws java.sql.SQLException

setTablePartitionLower

public void setTablePartitionLower(java.lang.String TablePartitionLower)
                            throws java.sql.SQLException

getTablePartitionUpper

public java.lang.String getTablePartitionUpper()
                                        throws java.sql.SQLException

setTablePartitionUpper

public void setTablePartitionUpper(java.lang.String TablePartitionUpper)
                            throws java.sql.SQLException

ODCIArgDescList

oracle.ODCI.ODCIArgDescList

public class ODCIArgDescList


Fields

_SQL_NAME

public static final java.lang.String _SQL_NAME

_SQL_TYPECODE

public static final int _SQL_TYPECODE


Constructors

ODCIArgDescList

public ODCIArgDescList()

ODCIArgDescList

public ODCIArgDescList(ODCIArgDesc[] a)

Methods

getORADataFactory

public static oracle.sql.ORADataFactory getORADataFactory()

toDatum

public oracle.sql.Datum toDatum(java.sql.Connection c)
                         throws java.sql.SQLException

create

public oracle.sql.ORAData create(oracle.sql.Datum d,
                                 int sqlType)
                          throws java.sql.SQLException

length

public int length()
           throws java.sql.SQLException

getBaseType

public int getBaseType()
                throws java.sql.SQLException

getBaseTypeName

public java.lang.String getBaseTypeName()
                                 throws java.sql.SQLException

getDescriptor

public oracle.sql.ArrayDescriptor getDescriptor()
                                         throws java.sql.SQLException

getArray

public ODCIArgDesc[] getArray()
                       throws java.sql.SQLException

setArray

public void setArray(ODCIArgDesc[] a)
              throws java.sql.SQLException

getArray

public ODCIArgDesc[] getArray(long index,
                              int count)
                       throws java.sql.SQLException

setArray

public void setArray(ODCIArgDesc[] a,
                     long index)
              throws java.sql.SQLException

getElement

public ODCIArgDesc getElement(long index)
                      throws java.sql.SQLException

setElement

public void setElement(ODCIArgDesc a,
                       long index)
                throws java.sql.SQLException

ODCIArgDescRef

oracle.ODCI.ODCIArgDescRef

public class ODCIArgDescRef


Fields

_SQL_BASETYPE

public static final java.lang.String _SQL_BASETYPE

_SQL_TYPECODE

public static final int _SQL_TYPECODE


Constructors

ODCIArgDescRef

public ODCIArgDescRef()

Methods

getORADataFactory

public static oracle.sql.ORADataFactory getORADataFactory()

toDatum

public oracle.sql.Datum toDatum(java.sql.Connection c)
                         throws java.sql.SQLException

create

public oracle.sql.ORAData create(oracle.sql.Datum d,
                                 int sqlType)
                          throws java.sql.SQLException

getValue

public ODCIArgDesc getValue()
                     throws java.sql.SQLException

setValue

public void setValue(ODCIArgDesc c)

throws java.sql.SQLException


ODCIColInfo

oracle.ODCI.ODCIColInfo

public class ODCIColInfo


Fields

_SQL_NAME

public static final java.lang.String _SQL_NAME

_SQL_TYPECODE

public static final int _SQL_TYPECODE


Constructors

ODCIColInfo

public ODCIColInfo()

Methods

getORADataFactory

public static oracle.sql.ORADataFactory getORADataFactory()

toDatum

public oracle.sql.Datum toDatum(java.sql.Connection c)
                         throws java.sql.SQLException

create

public oracle.sql.ORAData create(oracle.sql.Datum d,
                                 int sqlType)
                          throws java.sql.SQLException

getTableSchema

public java.lang.String getTableSchema()
                                throws java.sql.SQLException

setTableSchema

public void setTableSchema(java.lang.String TableSchema)
                    throws java.sql.SQLException

getTableName

public java.lang.String getTableName()
                              throws java.sql.SQLException

setTableName

public void setTableName(java.lang.String TableName)
                  throws java.sql.SQLException

getColName

public java.lang.String getColName()
                            throws java.sql.SQLException

setColName

public void setColName(java.lang.String ColName)
                throws java.sql.SQLException

getColTypeName

public java.lang.String getColTypeName()
                                throws java.sql.SQLException

setColTypeName

public void setColTypeName(java.lang.String ColTypeName)
                    throws java.sql.SQLException

getColTypeSchema

public java.lang.String getColTypeSchema()
                                  throws java.sql.SQLException

setColTypeSchema

public void setColTypeSchema(java.lang.String ColTypeSchema)
                      throws java.sql.SQLException

getTablePartition

public java.lang.String getTablePartition()
                                   throws java.sql.SQLException

setTablePartition

public void setTablePartition(java.lang.String TablePartition)

throws java.sql.SQLException


ODCIColInfoList

oracle.ODCI.ODCIColInfoList

public class ODCIColInfoList


Fields

_SQL_NAME

public static final java.lang.String _SQL_NAME

_SQL_TYPECODE

public static final int _SQL_TYPECODE


Constructors

ODCIColInfoList

public ODCIColInfoList()

ODCIColInfoList

public ODCIColInfoList(ODCIColInfo[] a)

Methods

getORADataFactory

public static oracle.sql.ORADataFactory getORADataFactory()

toDatum

public oracle.sql.Datum toDatum(java.sql.Connection c)
                         throws java.sql.SQLException

create

public oracle.sql.ORAData create(oracle.sql.Datum d,
                                 int sqlType)
                          throws java.sql.SQLException

length

public int length()
           throws java.sql.SQLException

getBaseType

public int getBaseType()
                throws java.sql.SQLException

getBaseTypeName

public java.lang.String getBaseTypeName()
                                 throws java.sql.SQLException

getDescriptor

public oracle.sql.ArrayDescriptor getDescriptor()
                                         throws java.sql.SQLException

getArray

public ODCIColInfo[] getArray()
                       throws java.sql.SQLException

setArray

public void setArray(ODCIColInfo[] a)
              throws java.sql.SQLException

getArray

public ODCIColInfo[] getArray(long index,
                              int count)
                       throws java.sql.SQLException

setArray

public void setArray(ODCIColInfo[] a,
                     long index)
              throws java.sql.SQLException

getElement

public ODCIColInfo getElement(long index)
                       throws java.sql.SQLException

setElement

public void setElement(ODCIColInfo a,
                       long index)

throws java.sql.SQLException


ODCIColInfoRef

oracle.ODCI.ODCIColInfoRef

public class ODCIColInfoRef


Fields

_SQL_BASETYPE

public static final java.lang.String _SQL_BASETYPE

_SQL_TYPECODE

public static final int _SQL_TYPECODE

Constructors

ODCIColInfoRef

public ODCIColInfoRef()

Methods

getORADataFactory

public static oracle.sql.ORADataFactory getORADataFactory()

toDatum

public oracle.sql.Datum toDatum(java.sql.Connection c)
                         throws java.sql.SQLException

create

public oracle.sql.ORAData create(oracle.sql.Datum d,
                                 int sqlType)
                          throws java.sql.SQLException

getValue

public ODCIColInfo getValue()
                     throws java.sql.SQLException

setValue

public void setValue(ODCIColInfo c)
              throws java.sql.SQLException

ODCICost

oracle.ODCI.ODCICost

public class ODCICost


Fields

_SQL_NAME

public static final java.lang.String _SQL_NAME

_SQL_TYPECODE

public static final int _SQL_TYPECODE


Constructors

ODCICost

public ODCICost()


Methods

getORADataFactory

public static oracle.sql.ORADataFactory getORADataFactory()

toDatum

public oracle.sql.Datum toDatum(java.sql.Connection c)
                         throws java.sql.SQLException

create

public oracle.sql.ORAData create(oracle.sql.Datum d,
                                 int sqlType)
                          throws java.sql.SQLException

getCPUcost

public java.math.BigDecimal getCPUcost()
                                throws java.sql.SQLException

setCPUcost

public void setCPUcost(java.math.BigDecimal CPUcost)
                throws java.sql.SQLException

getIOcost

public java.math.BigDecimal getIOcost()
                               throws java.sql.SQLException

setIOcost

public void setIOcost(java.math.BigDecimal IOcost)
               throws java.sql.SQLException

getNetworkCost

public java.math.BigDecimal getNetworkCost()
                                    throws java.sql.SQLException

setNetworkCost

public void setNetworkCost(java.math.BigDecimal NetworkCost)
                    throws java.sql.SQLException

getIndexCostInfo

public java.lang.String getIndexCostInfo()
                                  throws java.sql.SQLException

setIndexCostInfo

public void setIndexCostInfo(java.lang.String IndexCostInfo)

throws java.sql.SQLException


ODCICostRef

oracle.ODCI.ODCICostRef

public class ODCICostRef


Fields

_SQL_BASETYPE

public static final java.lang.String _SQL_BASETYPE

_SQL_TYPECODE

public static final int _SQL_TYPECODE


Constructors

ODCICostRef

public ODCICostRef()

Methods

getORADataFactory

public static oracle.sql.ORADataFactory getORADataFactory()

toDatum

public oracle.sql.Datum toDatum(java.sql.Connection c)
                         throws java.sql.SQLException

create

public oracle.sql.ORAData create(oracle.sql.Datum d,
                                 int sqlType)
                          throws java.sql.SQLException

getValue

public ODCICost getValue()
                  throws java.sql.SQLException

setValue

public void setValue(ODCICost c)

throws java.sql.SQLException


ODCIEnv

oracle.ODCI.ODCIEnv

public class ODCIEnv


Fields

SQL_NAME

public static final java.lang.String _SQL_NAME

_SQL_TYPECODE

public static final int _SQL_TYPECODE


Constructors

ODCIEnv

public ODCIEnv()

Methods

getORADataFactory

public static oracle.sql.ORADataFactory getORADataFactory()

toDatum

public oracle.sql.Datum toDatum(java.sql.Connection c)
                         throws java.sql.SQLException

create

public oracle.sql.ORAData create(oracle.sql.Datum d,
                                 int sqlType)
                          throws java.sql.SQLException

getEnvFlags

public java.math.BigDecimal getEnvFlags()
                                 throws java.sql.SQLException

setEnvFlags

public void setEnvFlags(java.math.BigDecimal EnvFlags)
                 throws java.sql.SQLException

getCallProperty

public java.math.BigDecimal getCallProperty()
                                     throws java.sql.SQLException

setCallProperty

public void setCallProperty(java.math.BigDecimal CallProperty)
                     throws java.sql.SQLException

ODCIEnvRef

oracle.ODCI.ODCIEnvRef

public class ODCIEnvRef


Fields

_SQL_BASETYPE

public static final java.lang.String _SQL_BASETYPE

_SQL_TYPECODE

public static final int _SQL_TYPECODE


Constructors

ODCIEnvRef

public ODCIEnvRef()

Methods

getORADataFactory

public static oracle.sql.ORADataFactory getORADataFactory()

toDatum

public oracle.sql.Datum toDatum(java.sql.Connection c)
                         throws java.sql.SQLException

create

public oracle.sql.ORAData create(oracle.sql.Datum d,
                                 int sqlType)
                          throws java.sql.SQLException

getValue

public ODCIEnv getValue()
                 throws java.sql.SQLException

setValue

public void setValue(ODCIEnv c)
              throws java.sql.SQLException

ODCIFuncInfo

oracle.ODCI.ODCIFuncInfo

public class ODCIFuncInfo


Fields

_SQL_NAME

public static final java.lang.String _SQL_NAME

_SQL_TYPECODE

public static final int _SQL_TYPECODE


Constructors

ODCIFuncInfo

public ODCIFuncInfo()

Methods

getORADataFactory

public static oracle.sql.ORADataFactory getORADataFactory()

toDatum

public oracle.sql.Datum toDatum(java.sql.Connection c)
                          throws java.sql.SQLException

create

public oracle.sql.ORAData create(oracle.sql.Datum d,
                                 int sqlType)
                             throws java.sql.SQLException

getObjectSchema

public java.lang.String getObjectSchema()
                           throws java.sql.SQLException

setObjectSchema

public void setObjectSchema(java.lang.String ObjectSchema)
                     throws java.sql.SQLException

getObjectName

public java.lang.String getObjectName()
                               throws java.sql.SQLException

setObjectName

public void setObjectName(java.lang.String ObjectName)
                   throws java.sql.SQLException

getMethodName

public java.lang.String getMethodName()
                               throws java.sql.SQLException

setMethodName

public void setMethodName(java.lang.String MethodName)
                   throws java.sql.SQLException

getFlags

public java.math.BigDecimal getFlags()
                              throws java.sql.SQLException

setFlags

public void setFlags(java.math.BigDecimal Flags)
              throws java.sql.SQLException

ODCIFuncInfoRef

oracle.ODCI.ODCIFuncInfoRef

public class ODCIFuncInfoRef


Fields

_SQL_BASETYPE

public static final java.lang.String _SQL_BASETYPE

_SQL_TYPECODE

public static final int _SQL_TYPECODE


Constructors

ODCIFuncInfoRef

public ODCIFuncInfoRef()


Methods

getORADataFactory

public static oracle.sql.ORADataFactory getORADataFactory()

toDatum

public oracle.sql.Datum toDatum(java.sql.Connection c)
                         throws java.sql.SQLException

create

public oracle.sql.ORAData create(oracle.sql.Datum d,
                                 int sqlType)
                          throws java.sql.SQLException

getValue

public ODCIFuncInfo getValue()
                      throws java.sql.SQLException

setValue

public void setValue(ODCIFuncInfo c)
              throws java.sql.SQLException

ODCIIndexCtx

oracle.ODCI.ODCIIndexCtx

public class ODCIIndexCtx


Fields

_SQL_NAME

public static final java.lang.String _SQL_NAME

_SQL_TYPECODE

public static final int _SQL_TYPECODE


Constructors

ODCIIndexCtx

public ODCIIndexCtx()


Methods

getORADataFactory

public static oracle.sql.ORADataFactory getORADataFactory()

toDatum

public oracle.sql.Datum toDatum(java.sql.Connection c)
                         throws java.sql.SQLException

create

public oracle.sql.ORAData create(oracle.sql.Datum d,
                                 int sqlType)
                          throws java.sql.SQLException

getIndexInfo

public ODCIIndexInfo getIndexInfo()
                           throws java.sql.SQLException

setIndexInfo

public void setIndexInfo(ODCIIndexInfo IndexInfo)
                  throws java.sql.SQLException

getRid

public java.lang.String getRid()
                        throws java.sql.SQLException

setRid

public void setRid(java.lang.String Rid)

throws java.sql.SQLException


ODCIIndexCtxRef

oracle.ODCI.ODCIIndexCtxRef

public class ODCIIndexCtxRef


Fields

_SQL_BASETYPE

public static final java.lang.String _SQL_BASETYPE

_SQL_TYPECODE

public static final int _SQL_TYPECODE


Constructors

ODCIIndexCtxRef

public ODCIIndexCtxRef()

Methods

getORADataFactory

public static oracle.sql.ORADataFactory getORADataFactory()

toDatum

public oracle.sql.Datum toDatum(java.sql.Connection c)
                         throws java.sql.SQLException

create

public oracle.sql.ORAData create(oracle.sql.Datum d,
                                 int sqlType)
                          throws java.sql.SQLException

getValue

public ODCIIndexCtx getValue()
                      throws java.sql.SQLException

setValue

public void setValue(ODCIIndexCtx c)
              throws java.sql.SQLException

ODCIIndexInfo

oracle.ODCI.ODCIIndexInfo

public class ODCIIndexInfo


Fields

_SQL_NAME

public static final java.lang.String _SQL_NAME

_SQL_TYPECODE

public static final int _SQL_TYPECODE


Constructors

ODCIIndexInfo

public ODCIIndexInfo()


Methods

getORADataFactory

public static oracle.sql.ORADataFactory getORADataFactory()

toDatum

public oracle.sql.Datum toDatum(java.sql.Connection c)
                         throws java.sql.SQLException

create

public oracle.sql.ORAData create(oracle.sql.Datum d,
                                 int sqlType)
                          throws java.sql.SQLException

getIndexSchema

public java.lang.String getIndexSchema()
                                throws java.sql.SQLException

setIndexSchema

public void setIndexSchema(java.lang.String IndexSchema)
                    throws java.sql.SQLException

getIndexName

public java.lang.String getIndexName()
                              throws java.sql.SQLException

setIndexName

public void setIndexName(java.lang.String IndexName)
                  throws java.sql.SQLException

getIndexCols

public ODCIColInfoList getIndexCols()
                             throws java.sql.SQLException

setIndexCols

public void setIndexCols(ODCIColInfoList IndexCols)
                  throws java.sql.SQLException

getIndexPartition

public java.lang.String getIndexPartition()
                                   throws java.sql.SQLException

setIndexPartition

public void setIndexPartition(java.lang.String IndexPartition)
                       throws java.sql.SQLException

getIndexInfoFlags

public java.math.BigDecimal getIndexInfoFlags()
                                   throws java.sql.SQLException

setIndexInfoFlags

public void setIndexInfoFlags(java.math.BigDecimal IndexInfoFlags)
                       throws java.sql.SQLException

ODCIIndexInfoRef

oracle.ODCI.ODCIIndexInfoRef

public class ODCIIndexInfoRef


Fields

_SQL_BASETYPE

public static final java.lang.String _SQL_BASETYPE

_SQL_TYPECODE

public static final int _SQL_TYPECODE


Constructors

ODCIIndexInfoRef

public ODCIIndexInfoRef()


Methods

getORADataFactory

public static oracle.sql.ORADataFactory getORADataFactory()

toDatum

public oracle.sql.Datum toDatum(java.sql.Connection c)
                         throws java.sql.SQLException

create

public oracle.sql.ORAData create(oracle.sql.Datum d,
                                 int sqlType)
                          throws java.sql.SQLException

getValue

public ODCIIndexInfo getValue()
                       throws java.sql.SQLException

setValue

public void setValue(ODCIIndexInfo c)
              throws java.sql.SQLException

ODCIObject

oracle.ODCI.ODCIObject

public class ODCIObject


Fields

_SQL_NAME

public static final java.lang.String _SQL_NAME

_SQL_TYPECODE

public static final int _SQL_TYPECODE


Constructors

ODCIObject

public ODCIObject()


Methods

getORADataFactory

public static oracle.sql.ORADataFactory getORADataFactory()

toDatum

public oracle.sql.Datum toDatum(java.sql.Connection c)
                         throws java.sql.SQLException

create

public oracle.sql.ORAData create(oracle.sql.Datum d,
                                 int sqlType)
                          throws java.sql.SQLException

getObjectSchema

public java.lang.String getObjectSchema()
                                 throws java.sql.SQLException

setObjectSchema

public void setObjectSchema(java.lang.String ObjectSchema)
                     throws java.sql.SQLException

getObjectName

public java.lang.String getObjectName()
                               throws java.sql.SQLException

setObjectName

public void setObjectName(java.lang.String ObjectName)

throws java.sql.SQLException


ODCIObjectList

oracle.ODCI.ODCIObjectList

public class ODCIObjectList


Fields

_SQL_NAME

public static final java.lang.String _SQL_NAME

_SQL_TYPECODE

public static final int _SQL_TYPECODE


Constructors

ODCIObjectList

public ODCIObjectList()

ODCIObjectList

public ODCIObjectList(ODCIObject[] a)


Methods

getORADataFactory

public static oracle.sql.ORADataFactory getORADataFactory()

toDatum

public oracle.sql.Datum toDatum(java.sql.Connection c)
                         throws java.sql.SQLException

create

public oracle.sql.ORAData create(oracle.sql.Datum d,
                                 int sqlType)
                          throws java.sql.SQLException

length

public int length()
           throws java.sql.SQLException

getBaseType

public int getBaseType()
                throws java.sql.SQLException

getBaseTypeName

public java.lang.String getBaseTypeName()
                                 throws java.sql.SQLException

getDescriptor

public oracle.sql.ArrayDescriptor getDescriptor()
                                         throws java.sql.SQLException

getArray

public ODCIObject[] getArray()
                      throws java.sql.SQLException

setArray

public void setArray(ODCIObject[] a)
              throws java.sql.SQLException

getArray

public ODCIObject[] getArray(long index,
                             int count)
                      throws java.sql.SQLException

setArray

public void setArray(ODCIObject[] a,
                     long index)
              throws java.sql.SQLException

getElement

public ODCIObject getElement(long index)
                      throws java.sql.SQLException

setElement

public void setElement(ODCIObject a,
                       long index)

throws java.sql.SQLException


ODCIObjectRef

oracle.ODCI.ODCIObjectRef

public class ODCIObjectRef


Fields

_SQL_BASETYPE

public static final java.lang.String _SQL_BASETYPE

_SQL_TYPECODE

public static final int _SQL_TYPECODE


Constructors

ODCIObjectRef

public ODCIObjectRef()


Methods

getORADataFactory

public static oracle.sql.ORADataFactory getORADataFactory()

toDatum

public oracle.sql.Datum toDatum(java.sql.Connection c)
                         throws java.sql.SQLException

create

public oracle.sql.ORAData create(oracle.sql.Datum d,
                                 int sqlType)
                          throws java.sql.SQLException

getValue

public ODCIObject getValue()
                    throws java.sql.SQLException

setValue

public void setValue(ODCIObject c)

throws java.sql.SQLException


ODCIPartInfo

oracle.ODCI.ODCIPartInfo

public class ODCIPartInfo


Fields

_SQL_NAME

public static final java.lang.String _SQL_NAME

_SQL_TYPECODE

public static final int _SQL_TYPECODE


Constructors

ODCIPartInfo

public ODCIPartInfo()


Methods

getORADataFactory

public static oracle.sql.ORADataFactory getORADataFactory()

toDatum

public oracle.sql.Datum toDatum(java.sql.Connection c)
                         throws java.sql.SQLException

create

public oracle.sql.ORAData create(oracle.sql.Datum d,
                                 int sqlType)
                          throws java.sql.SQLException

getTablePartition

public java.lang.String getTablePartition()
                                   throws java.sql.SQLException

setTablePartition

public void setTablePartition(java.lang.String TablePartition)
                       throws java.sql.SQLException

getIndexPartition

public java.lang.String getIndexPartition()
                                   throws java.sql.SQLException

setIndexPartition

public void setIndexPartition(java.lang.String IndexPartition)

throws java.sql.SQLException


ODCIPartInfoRef

oracle.ODCI.ODCIPartInfoRef

public class ODCIPartInfoRef


Fields

_SQL_BASETYPE

public static final java.lang.String _SQL_BASETYPE

_SQL_TYPECODE

public static final int _SQL_TYPECODE


Constructors

ODCIPartInfoRef

public ODCIPartInfoRef()


Methods

getORADataFactory

public static oracle.sql.ORADataFactory getORADataFactory()

toDatum

public oracle.sql.Datum toDatum(java.sql.Connection c)
                         throws java.sql.SQLException

create

public oracle.sql.ORAData create(oracle.sql.Datum d,
                                 int sqlType)
                          throws java.sql.SQLException

getValue

public ODCIPartInfo getValue()
                      throws java.sql.SQLException

setValue

public void setValue(ODCIPartInfo c)

throws java.sql.SQLException


ODCIPredInfo

oracle.ODCI.ODCIPredInfo

public class ODCIPredInfo


Fields

_SQL_NAME

public static final java.lang.String _SQL_NAME

_SQL_TYPECODE

public static final int _SQL_TYPECODE


Constructors

ODCIPredInfo

public ODCIPredInfo()


Methods

getORADataFactory

public static oracle.sql.ORADataFactory getORADataFactory()

toDatum

public oracle.sql.Datum toDatum(java.sql.Connection c)
                         throws java.sql.SQLException

create

public oracle.sql.ORAData create(oracle.sql.Datum d,
                                 int sqlType)
                          throws java.sql.SQLException

getObjectSchema

public java.lang.String getObjectSchema()
                                 throws java.sql.SQLException

setObjectSchema

public void setObjectSchema(java.lang.String ObjectSchema)
                     throws java.sql.SQLException

getObjectName

public java.lang.String getObjectName()
                               throws java.sql.SQLException

setObjectName

public void setObjectName(java.lang.String ObjectName)
                   throws java.sql.SQLException

getMethodName

public java.lang.String getMethodName()
                               throws java.sql.SQLException

setMethodName

public void setMethodName(java.lang.String MethodName)
                   throws java.sql.SQLException

getFlags

public java.math.BigDecimal getFlags()
                              throws java.sql.SQLException

setFlags

public void setFlags(java.math.BigDecimal Flags)

throws java.sql.SQLException


ODCIPredInfoRef

oracle.ODCI.ODCIPredInfoRef

public class ODCIPredInfoRef


Fields

_SQL_BASETYPE

public static final java.lang.String _SQL_BASETYPE

_SQL_TYPECODE

public static final int _SQL_TYPECODE


Constructors

ODCIPredInfoRef

public ODCIPredInfoRef()


Methods

getORADataFactory

public static oracle.sql.ORADataFactory getORADataFactory()

toDatum

public oracle.sql.Datum toDatum(java.sql.Connection c)
                         throws java.sql.SQLException

create

public oracle.sql.ORAData create(oracle.sql.Datum d,
                                 int sqlType)
                          throws java.sql.SQLException

getValue

public ODCIPredInfo getValue()
                      throws java.sql.SQLException

setValue

public void setValue(ODCIPredInfo c)

throws java.sql.SQLException


ODCIQueryInfo

oracle.ODCI.ODCIQueryInfo

public class ODCIQueryInfo


Fields

_SQL_NAME

public static final java.lang.String _SQL_NAME

_SQL_TYPECODE

public static final int _SQL_TYPECODE


Constructors

ODCIQueryInfo

public ODCIQueryInfo()


Methods

getORADataFactory

public static oracle.sql.ORADataFactory getORADataFactory()

toDatum

public oracle.sql.Datum toDatum(java.sql.Connection c)
                         throws java.sql.SQLException

create

public oracle.sql.ORAData create(oracle.sql.Datum d,
                                 int sqlType)
                          throws java.sql.SQLException

getFlags

public java.math.BigDecimal getFlags()
                              throws java.sql.SQLException

setFlags

public void setFlags(java.math.BigDecimal Flags)
              throws java.sql.SQLException

getAncOps

public ODCIObjectList getAncOps()
                         throws java.sql.SQLException

setAncOps

public void setAncOps(ODCIObjectList AncOps)

throws java.sql.SQLException


ODCIQueryInfoRef

oracle.ODCI.ODCIQueryInfoRef

public class ODCIQueryInfoRef


Fields

_SQL_BASETYPE

public static final java.lang.String _SQL_BASETYPE

_SQL_TYPECODE

public static final int _SQL_TYPECODE


Constructors

ODCIQueryInfoRef

public ODCIQueryInfoRef()


Methods

getORADataFactory

public static oracle.sql.ORADataFactory getORADataFactory()

toDatum

public oracle.sql.Datum toDatum(java.sql.Connection c)
                         throws java.sql.SQLException

create

public oracle.sql.ORAData create(oracle.sql.Datum d,
                                 int sqlType)
                          throws java.sql.SQLException

getValue

public ODCIQueryInfo getValue()
                       throws java.sql.SQLException

setValue

public void setValue(ODCIQueryInfo c)

throws java.sql.SQLException


ODCIRidList

oracle.ODCI.ODCIRidList

public class ODCIRidList


Fields

_SQL_NAME

public static final java.lang.String _SQL_NAME

_SQL_TYPECODE

public static final int _SQL_TYPECODE


Constructors

ODCIRidList

public ODCIRidList()

ODCIRidList

public ODCIRidList(java.lang.String[] a)


Methods

getORADataFactory

public static oracle.sql.ORADataFactory getORADataFactory()

toDatum

public oracle.sql.Datum toDatum(java.sql.Connection c)
                         throws java.sql.SQLException

create

public oracle.sql.ORAData create(oracle.sql.Datum d,
                                 int sqlType)
                          throws java.sql.SQLException

length

public int length()
           throws java.sql.SQLException

getBaseType

public int getBaseType()
                throws java.sql.SQLException

getBaseTypeName

public java.lang.String getBaseTypeName()
                                 throws java.sql.SQLException

getDescriptor

public oracle.sql.ArrayDescriptor getDescriptor()
                                         throws java.sql.SQLException

getArray

public java.lang.String[] getArray()
                            throws java.sql.SQLException

setArray

public void setArray(java.lang.String[] a)
              throws java.sql.SQLException

getArray

public java.lang.String[] getArray(long index,
                                   int count)
                            throws java.sql.SQLException

setArray

public void setArray(java.lang.String[] a,
                     long index)
              throws java.sql.SQLException

getElement

public java.lang.String getElement(long index)
                            throws java.sql.SQLException

setElement

public void setElement(java.lang.String a,
                       long index)

throws java.sql.SQLException


ODCIStatsOptions

oracle.ODCI.ODCIStatsOptions

public class ODCIStatsOptions


Fields

_SQL_NAME

public static final java.lang.String _SQL_NAME

_SQL_TYPECODE

public static final int _SQL_TYPECODE


Constructors

ODCIStatsOptions

public ODCIStatsOptions()


Methods

getORADataFactory

public static oracle.sql.ORADataFactory getORADataFactory()

toDatum

public oracle.sql.Datum toDatum(java.sql.Connection c)
                         throws java.sql.SQLException

create

public oracle.sql.ORAData create(oracle.sql.Datum d,
                                 int sqlType)
                          throws java.sql.SQLException

getSample

public java.math.BigDecimal getSample()
                               throws java.sql.SQLException

setSample

public void setSample(java.math.BigDecimal Sample)
               throws java.sql.SQLException

getOptions

public java.math.BigDecimal getOptions()
                                throws java.sql.SQLException

setOptions

public void setOptions(java.math.BigDecimal Options)
                throws java.sql.SQLException

getFlags

public java.math.BigDecimal getFlags()
                              throws java.sql.SQLException

setFlags

public void setFlags(java.math.BigDecimal Flags)

throws java.sql.SQLException


ODCIStatsOptionsRef

oracle.ODCI.ODCIStatsOptionsRef

public class ODCIStatsOptionsRef


Fields

_SQL_BASETYPE

public static final java.lang.String _SQL_BASETYPE

_SQL_TYPECODE

public static final int _SQL_TYPECODE


Constructors

ODCIStatsOptionsRef

public ODCIStatsOptionsRef()


Methods

getORADataFactory

public static oracle.sql.ORADataFactory getORADataFactory()

toDatum

public oracle.sql.Datum toDatum(java.sql.Connection c)
                         throws java.sql.SQLException

create

public oracle.sql.ORAData create(oracle.sql.Datum d,
                                 int sqlType)
                          throws java.sql.SQLException

getValue

public ODCIStatsOptions getValue()
                          throws java.sql.SQLException

setValue

public void setValue(ODCIStatsOptions c)
              throws java.sql.SQLException

Go to previous page Go to next page
Oracle
Copyright © 1996, 2002 Oracle Corporation.

All Rights Reserved.
Go To Documentation Library
Home
Go To Product List
Book List
Go To Table Of Contents
Contents
Go To Index
Index

Master Index

Feedback