Uses of Class
org.eclipse.birt.data.oda.OdaException

Packages that use OdaException
org.eclipse.birt.data.oda [Deprecated] Defines the run-time API of BIRT Open Data Access (ODA) extensions. 
org.eclipse.birt.data.oda.impl [Deprecated] Provides a template implementation of the main ODA run-time interfaces. 
org.eclipse.birt.data.oda.util.manifest [Deprecated] Provides a utility component for accessing the content of an ODA data source extension's configuration. 
 

Uses of OdaException in org.eclipse.birt.data.oda
 

Methods in org.eclipse.birt.data.oda that return OdaException
 OdaException OdaException.getNextException()
          Deprecated. Returns the next OdaException chained to this OdaException object.
 

Methods in org.eclipse.birt.data.oda with parameters of type OdaException
 void OdaException.setNextException(OdaException nextException)
          Deprecated. Adds an OdaException object to the end of the OdaException chain.
 

Methods in org.eclipse.birt.data.oda that throw OdaException
 int IResultSetMetaData.getColumnCount()
          Deprecated. Returns the number of columns in the corresponding IResultSet object.
 java.lang.String IResultSetMetaData.getColumnName(int index)
          Deprecated. Returns the name of the specific column.
 java.lang.String IResultSetMetaData.getColumnLabel(int index)
          Deprecated. Returns the designated column's suggested title for use in the column heading and/or display name.
 int IResultSetMetaData.getColumnType(int index)
          Deprecated. Returns the data provider specific code of the column's data type.
 java.lang.String IResultSetMetaData.getColumnTypeName(int index)
          Deprecated. Returns the data provider specific name of the column's data type.
 int IResultSetMetaData.getColumnDisplayLength(int index)
          Deprecated. Returns the display length of the specific column.
 int IResultSetMetaData.getPrecision(int index)
          Deprecated. Returns the maximum number of decimal digits of the specific column.
 int IResultSetMetaData.getScale(int index)
          Deprecated. Returns the maximum number of digits to the right of the decimal point of the specific column.
 int IResultSetMetaData.isNullable(int index)
          Deprecated. Indicates the nullability of values in the designated column.
 IResultSetMetaData IResultSet.getMetaData()
          Deprecated. Returns the metadata associated with this IResultSet.
 void IResultSet.close()
          Deprecated. Closes the cursor associated with this IResultSet.
 void IResultSet.setMaxRows(int max)
          Deprecated. Specifies the maximum number of rows that can be fetched from this result set.
 boolean IResultSet.next()
          Deprecated. Moves the cursor down one row from its current position.
 int IResultSet.getRow()
          Deprecated. Returns the current row's 1-based index position.
 java.lang.String IResultSet.getString(int index)
          Deprecated. Gets the value of the designated column in the current row as a String.
 java.lang.String IResultSet.getString(java.lang.String columnName)
          Deprecated. Gets the value of the designated column in the current row as a String.
 int IResultSet.getInt(int index)
          Deprecated. Gets the value of the designated column in the current row as an int.
 int IResultSet.getInt(java.lang.String columnName)
          Deprecated. Gets the value of the designated column in the current row as an int.
 double IResultSet.getDouble(int index)
          Deprecated. Gets the value of the designated column in the current row as a double.
 double IResultSet.getDouble(java.lang.String columnName)
          Deprecated. Gets the value of the designated column in the current row as a double.
 java.math.BigDecimal IResultSet.getBigDecimal(int index)
          Deprecated. Gets the value of the designated column in the current row as a decimal.
 java.math.BigDecimal IResultSet.getBigDecimal(java.lang.String columnName)
          Deprecated. Gets the value of the designated column in the current row as a decimal.
 java.sql.Date IResultSet.getDate(int index)
          Deprecated. Gets the value of the designated column in the current row as a java.sql.Date.
 java.sql.Date IResultSet.getDate(java.lang.String columnName)
          Deprecated. Gets the value of the designated column in the current row as a java.sql.Date.
 java.sql.Time IResultSet.getTime(int index)
          Deprecated. Gets the value of the designated column in the current row as a java.sql.Time.
 java.sql.Time IResultSet.getTime(java.lang.String columnName)
          Deprecated. Gets the value of the designated column in the current row as a java.sql.Time.
 java.sql.Timestamp IResultSet.getTimestamp(int index)
          Deprecated. Gets the value of the designated column in the current row as a java.sql.Timestamp.
 java.sql.Timestamp IResultSet.getTimestamp(java.lang.String columnName)
          Deprecated. Gets the value of the designated column in the current row as a java.sql.Timestamp.
 boolean IResultSet.wasNull()
          Deprecated. Returns whether the value read from the previous get<type> method was invalid or null.
 int IResultSet.findColumn(java.lang.String columnName)
          Deprecated. Returns the column index of the specified column name.
 void IQuery.prepare(java.lang.String queryText)
          Deprecated. Performs necessary checks to determine whether the query text is of a valid format supported by this IQuery implementation.
 void IQuery.setProperty(java.lang.String name, java.lang.String value)
          Deprecated. Sets the named property with the specified value.
 void IQuery.close()
          Deprecated. Attempts to close this IQuery.
 void IQuery.setMaxRows(int max)
          Deprecated. Specifies the maximum number of rows that can be fetched from the statement's result set(s).
 int IQuery.getMaxRows()
          Deprecated. Returns the maximum number of rows that can be fetched from the statement's result set(s).
 IResultSetMetaData IQuery.getMetaData()
          Deprecated. Returns the metadata of the current result set for this prepared IQuery.
 IResultSet IQuery.executeQuery()
          Deprecated. Executes the statement's prepared query and returns a single IResultSet object.
 void IQuery.clearInParameters()
          Deprecated. An optional method to clear the current input parameter values immediately.
 void IQuery.setInt(java.lang.String parameterName, int value)
          Deprecated. Sets the designated parameter to the given integer value.
 void IQuery.setInt(int parameterId, int value)
          Deprecated. Sets the designated parameter to the given integer value.
 void IQuery.setDouble(java.lang.String parameterName, double value)
          Deprecated. Sets the designated parameter to the given double value.
 void IQuery.setDouble(int parameterId, double value)
          Deprecated. Sets the designated parameter to the given double value.
 void IQuery.setBigDecimal(java.lang.String parameterName, java.math.BigDecimal value)
          Deprecated. Sets the designated parameter to the given decimal value.
 void IQuery.setBigDecimal(int parameterId, java.math.BigDecimal value)
          Deprecated. Sets the designated parameter to the given decimal value.
 void IQuery.setString(java.lang.String parameterName, java.lang.String value)
          Deprecated. Sets the designated parameter to the given string value.
 void IQuery.setString(int parameterId, java.lang.String value)
          Deprecated. Sets the designated parameter to the given string value.
 void IQuery.setDate(java.lang.String parameterName, java.sql.Date value)
          Deprecated. Sets the designated parameter to the given Date value.
 void IQuery.setDate(int parameterId, java.sql.Date value)
          Deprecated. Sets the designated parameter to the given Date value.
 void IQuery.setTime(java.lang.String parameterName, java.sql.Time value)
          Deprecated. Sets the designated parameter to the given Time value.
 void IQuery.setTime(int parameterId, java.sql.Time value)
          Deprecated. Sets the designated parameter to the given Time value.
 void IQuery.setTimestamp(java.lang.String parameterName, java.sql.Timestamp value)
          Deprecated. Sets the designated parameter to the given Timestamp value.
 void IQuery.setTimestamp(int parameterId, java.sql.Timestamp value)
          Deprecated. Sets the designated parameter to the given Timestamp value.
 int IQuery.findInParameter(java.lang.String parameterName)
          Deprecated. Returns the 1-based index of the specified input parameter.
 IParameterMetaData IQuery.getParameterMetaData()
          Deprecated. Returns the count, data types, and other metadata attributes of the parameters defined in this prepared IQuery object.
 void IQuery.setSortSpec(SortSpec sortBy)
          Deprecated. Specifies the sort specification for this IQuery.
 SortSpec IQuery.getSortSpec()
          Deprecated. Returns the sort specification associated with this IQuery.
 boolean IParameterRowSet.absolute(int rowIndex)
          Deprecated. Moves the cursor to the designated row number.
 boolean IParameterRowSet.previous()
          Deprecated. Moves the cursor up one element from its current position.
 int IParameterRowSet.add()
          Deprecated. Appends a new row to the end of this collection and moves the cursor to the new row's position.
 void IParameterRowSet.clear()
          Deprecated. Removes all of the elements from this collection.
 boolean IParameterRowSet.isEmpty()
          Deprecated. Determines whether this does not contain any elements.
 int IParameterRowSet.size()
          Deprecated. Returns the number of elements in this collection.
 void IParameterRowSet.setInt(int columnIndex, int value)
          Deprecated. Sets the integer value at the designated column.
 void IParameterRowSet.setInt(java.lang.String columnName, int value)
          Deprecated. Sets the integer value at the designated column.
 void IParameterRowSet.setDouble(int columnIndex, double value)
          Deprecated. Sets the double value at the designated column.
 void IParameterRowSet.setDouble(java.lang.String columnName, double value)
          Deprecated. Sets the double value at the designated column.
 void IParameterRowSet.setBigDecimal(int columnIndex, java.math.BigDecimal value)
          Deprecated. Sets the decimal value at the designated column.
 void IParameterRowSet.setBigDecimal(java.lang.String columnName, java.math.BigDecimal value)
          Deprecated. Sets the decimal value at the designated column.
 void IParameterRowSet.setString(int columnIndex, java.lang.String value)
          Deprecated. Sets the string value at the designated column.
 void IParameterRowSet.setString(java.lang.String columnName, java.lang.String value)
          Deprecated. Sets the string value at the designated column.
 void IParameterRowSet.setDate(int columnIndex, java.sql.Date value)
          Deprecated. Sets the date value at the designated column.
 void IParameterRowSet.setDate(java.lang.String columnName, java.sql.Date value)
          Deprecated. Sets the date value at the designated column.
 void IParameterRowSet.setTime(int columnIndex, java.sql.Time value)
          Deprecated. Sets the time value at the designated column.
 void IParameterRowSet.setTime(java.lang.String columnName, java.sql.Time value)
          Deprecated. Sets the time value at the designated column.
 void IParameterRowSet.setTimestamp(int columnIndex, java.sql.Timestamp value)
          Deprecated. Sets the time stamp value at the designated column.
 void IParameterRowSet.setTimestamp(java.lang.String columnName, java.sql.Timestamp value)
          Deprecated. Sets the time stamp value at the designated column.
 int IParameterMetaData.getParameterCount()
          Deprecated. Returns the number of parameters defined in the prepared statement object.
 int IParameterMetaData.getParameterMode(int param)
          Deprecated. Returns the input/output mode of the specified parameter.
 int IParameterMetaData.getParameterType(int param)
          Deprecated. Returns the data provider specific code of the parameter's data type.
 java.lang.String IParameterMetaData.getParameterTypeName(int param)
          Deprecated. Returns the data provider specific name of the parameter's data type.
 int IParameterMetaData.getPrecision(int param)
          Deprecated. Returns the maximum number of decimal digits for the specified parameter.
 int IParameterMetaData.getScale(int param)
          Deprecated. Returns the maximum number of digits to the right of the decimal point for the specified parameter.
 int IParameterMetaData.isNullable(int param)
          Deprecated. Returns whether null values are allowed for the specified parameter.
 IConnection IDriver.getConnection(java.lang.String dataSourceId)
          Deprecated. Returns an IConnection object that can then be used to establish a runtime connection to the underlying data source with the given unique id.
 void IDriver.setLogConfiguration(LogConfiguration logConfig)
          Deprecated. An optional method to set the trace logging configuration of the ODA runtime driver for the given type of data source and its runtime connection(s).
 int IDriver.getMaxConnections()
          Deprecated. Returns the maximum number of concurrent connections that the driver can support.
 IConnection IDataSetMetaData.getConnection()
          Deprecated. Returns the connection that produced this metadata object.
 IResultSet IDataSetMetaData.getDataSourceObjects(java.lang.String catalog, java.lang.String schema, java.lang.String object, java.lang.String version)
          Deprecated. Returns the collection of objects found in a data provider's catalog.
 int IDataSetMetaData.getDataSourceMajorVersion()
          Deprecated. Returns the major version number of the underlying data provider.
 int IDataSetMetaData.getDataSourceMinorVersion()
          Deprecated. Returns the minor version number of the underlying data provider.
 java.lang.String IDataSetMetaData.getDataSourceProductName()
          Deprecated. Returns the name of this data provider product.
 java.lang.String IDataSetMetaData.getDataSourceProductVersion()
          Deprecated. Returns the version of this data provider product as a String.
 int IDataSetMetaData.getSQLStateType()
          Deprecated. Indicates whether the SQLSTATE returned by OdaException.getSQLState() is X/Open SQL CLI or SQL99.
 boolean IDataSetMetaData.supportsMultipleResultSets()
          Deprecated. Indicates whether this data set type supports getting multiple IResultSet objects (sequentially or simultaneously), in its IAdvancedQuery implementation.
 boolean IDataSetMetaData.supportsMultipleOpenResults()
          Deprecated. Indicates whether this data set type supports getting multiple IResultSet objects simultaneously, in its IAdvancedQuery implementation.
 boolean IDataSetMetaData.supportsNamedResultSets()
          Deprecated. Indicates whether this data set type supports getting one or more IResultSet objects by name, in its IAdvancedQuery implementation.
 boolean IDataSetMetaData.supportsNamedParameters()
          Deprecated. Indicates whether this data set type supports named parameters in IQuery.
 boolean IDataSetMetaData.supportsInParameters()
          Deprecated. Indicates whether this data set type supports input parameters in IQuery.
 boolean IDataSetMetaData.supportsOutParameters()
          Deprecated. Indicates whether this data set type supports output parameters in its IAdvancedQuery implementation.
 void IConnection.open(java.util.Properties connProperties)
          Deprecated. Attempts to establish a connection based on the given connection properties.
 void IConnection.close()
          Deprecated. Attempts to close this connection.
 boolean IConnection.isOpen()
          Deprecated. Checks whether this has an established connection
 IDataSetMetaData IConnection.getMetaData(java.lang.String dataSetType)
          Deprecated. Returns an IDataSetMetaData object of the the given data set type.
 IQuery IConnection.newQuery(java.lang.String dataSetType)
          Deprecated. Returns an IQuery object of the given data set type.
 int IConnection.getMaxQueries()
          Deprecated. Returns the maximum number of active queries for any data set types that the driver can support for this connection.
 void IConnection.commit()
          Deprecated. Commits all changes made since the previous commit/rollback.
 void IConnection.rollback()
          Deprecated. Undoes all changes made since the previous commit/rollback.
 boolean IAdvancedQuery.execute()
          Deprecated. Executes the statement's prepared query that may return multiple result sets.
 IResultSet IAdvancedQuery.getResultSet()
          Deprecated. Returns the current result as an IResultSet object.
 boolean IAdvancedQuery.getMoreResults()
          Deprecated. Moves to the statement's next result set.
 java.lang.String[] IAdvancedQuery.getResultSetNames()
          Deprecated. Returns the names of result sets that can be returned by this IAdvancedQuery.
 IResultSetMetaData IAdvancedQuery.getMetaDataOf(java.lang.String resultSetName)
          Deprecated. Returns the metadata of the expected named result.
 IResultSet IAdvancedQuery.getResultSet(java.lang.String resultSetName)
          Deprecated. Returns the named result as an IResultSet object, or null if none is available.
 IParameterRowSet IAdvancedQuery.setNewRow(java.lang.String parameterName)
          Deprecated. Returns an IParameterRowSet object that contains a single row representing the named structure input parameter.
 IParameterRowSet IAdvancedQuery.setNewRow(int parameterId)
          Deprecated. Returns an IParameterRowSet object that contains a single row representing the specified structure input parameter.
 IParameterRowSet IAdvancedQuery.setNewRowSet(java.lang.String parameterName)
          Deprecated. Returns an empty IParameterRowSet object that represents the named table input parameter.
 IParameterRowSet IAdvancedQuery.setNewRowSet(int parameterId)
          Deprecated. Returns an empty IParameterRowSet object that represents the specified table input parameter.
 int IAdvancedQuery.getInt(java.lang.String parameterName)
          Deprecated. Returns the integer value from the designated output parameter.
 int IAdvancedQuery.getInt(int parameterId)
          Deprecated. Returns the integer value from the designated output parameter.
 double IAdvancedQuery.getDouble(java.lang.String parameterName)
          Deprecated. Returns the double value from the designated output parameter.
 double IAdvancedQuery.getDouble(int parameterId)
          Deprecated. Returns the double value from the designated output parameter.
 java.math.BigDecimal IAdvancedQuery.getBigDecimal(java.lang.String parameterName)
          Deprecated. Returns the decimal value from the designated output parameter.
 java.math.BigDecimal IAdvancedQuery.getBigDecimal(int parameterId)
          Deprecated. Returns the decimal value from the designated output parameter.
 java.lang.String IAdvancedQuery.getString(java.lang.String parameterName)
          Deprecated. Returns the String value from the designated output parameter.
 java.lang.String IAdvancedQuery.getString(int parameterId)
          Deprecated. Returns the String value from the designated output parameter.
 java.sql.Date IAdvancedQuery.getDate(java.lang.String parameterName)
          Deprecated. Returns the java.sql.Date value from the designated output parameter.
 java.sql.Date IAdvancedQuery.getDate(int parameterId)
          Deprecated. Returns the java.sql.Date value from the designated output parameter.
 java.sql.Time IAdvancedQuery.getTime(java.lang.String parameterName)
          Deprecated. Returns the java.sql.Time value from the designated output parameter.
 java.sql.Time IAdvancedQuery.getTime(int parameterId)
          Deprecated. Returns the java.sql.Time value from the designated output parameter.
 java.sql.Timestamp IAdvancedQuery.getTimestamp(java.lang.String parameterName)
          Deprecated. Returns the java.sql.Timestamp value from the designated output parameter.
 java.sql.Timestamp IAdvancedQuery.getTimestamp(int parameterId)
          Deprecated. Returns the java.sql.Timestamp value from the designated output parameter.
 IParameterRowSet IAdvancedQuery.getRow(java.lang.String parameterName)
          Deprecated. Returns the structure value from the designated output parameter.
 IParameterRowSet IAdvancedQuery.getRow(int parameterId)
          Deprecated. Returns the structure value from the designated output parameter.
 int IAdvancedQuery.findOutParameter(java.lang.String parameterName)
          Deprecated. Returns the 1-based index of the specified scalar or structure output parameter.
 boolean IAdvancedQuery.wasNull()
          Deprecated. Returns whether the value read from the previous get<type> method was null.
 void IAdvancedQuery.setSortSpec(java.lang.String resultSetName, SortSpec sortBy)
          Deprecated. Specifies the sort specification for the named result set of this IAdvancedQuery.
 SortSpec IAdvancedQuery.getSortSpec(java.lang.String resultSetName)
          Deprecated. Returns the sort specification associated with the named result set of this IAdvancedQuery.
 

Uses of OdaException in org.eclipse.birt.data.oda.impl
 

Methods in org.eclipse.birt.data.oda.impl that throw OdaException
 int SimpleResultSetMetaData.getColumnCount()
          Deprecated.  
 java.lang.String SimpleResultSetMetaData.getColumnName(int index)
          Deprecated.  
 java.lang.String SimpleResultSetMetaData.getColumnLabel(int index)
          Deprecated.  
 int SimpleResultSetMetaData.getColumnType(int index)
          Deprecated.  
 java.lang.String SimpleResultSetMetaData.getColumnTypeName(int index)
          Deprecated.  
 int SimpleResultSetMetaData.getColumnDisplayLength(int index)
          Deprecated.  
 int SimpleResultSetMetaData.getPrecision(int index)
          Deprecated.  
 int SimpleResultSetMetaData.getScale(int index)
          Deprecated.  
 int SimpleResultSetMetaData.isNullable(int index)
          Deprecated.  
 IResultSetMetaData SimpleResultSet.getMetaData()
          Deprecated.  
 void SimpleResultSet.setMaxRows(int max)
          Deprecated.  
 boolean SimpleResultSet.next()
          Deprecated.  
 void SimpleResultSet.close()
          Deprecated.  
 int SimpleResultSet.getRow()
          Deprecated.  
 java.lang.String SimpleResultSet.getString(int index)
          Deprecated.  
 java.lang.String SimpleResultSet.getString(java.lang.String columnName)
          Deprecated.  
 int SimpleResultSet.getInt(int index)
          Deprecated.  
 int SimpleResultSet.getInt(java.lang.String columnName)
          Deprecated.  
 double SimpleResultSet.getDouble(int index)
          Deprecated.  
 double SimpleResultSet.getDouble(java.lang.String columnName)
          Deprecated.  
 java.math.BigDecimal SimpleResultSet.getBigDecimal(int index)
          Deprecated.  
 java.math.BigDecimal SimpleResultSet.getBigDecimal(java.lang.String columnName)
          Deprecated.  
 java.sql.Date SimpleResultSet.getDate(int index)
          Deprecated.  
 java.sql.Date SimpleResultSet.getDate(java.lang.String columnName)
          Deprecated.  
 java.sql.Time SimpleResultSet.getTime(int index)
          Deprecated.  
 java.sql.Time SimpleResultSet.getTime(java.lang.String columnName)
          Deprecated.  
 java.sql.Timestamp SimpleResultSet.getTimestamp(int index)
          Deprecated.  
 java.sql.Timestamp SimpleResultSet.getTimestamp(java.lang.String columnName)
          Deprecated.  
 boolean SimpleResultSet.wasNull()
          Deprecated.  
 int SimpleResultSet.findColumn(java.lang.String columnName)
          Deprecated.  
 void SimpleQuery.prepare(java.lang.String queryText)
          Deprecated.  
 void SimpleQuery.close()
          Deprecated.  
 IResultSetMetaData SimpleQuery.getMetaData()
          Deprecated.  
 IResultSet SimpleQuery.executeQuery()
          Deprecated.  
 void SimpleQuery.setProperty(java.lang.String name, java.lang.String value)
          Deprecated.  
 void SimpleQuery.setMaxRows(int max)
          Deprecated.  
 int SimpleQuery.getMaxRows()
          Deprecated.  
 void SimpleQuery.clearInParameters()
          Deprecated.  
 void SimpleQuery.setInt(java.lang.String parameterName, int value)
          Deprecated.  
 void SimpleQuery.setInt(int parameterId, int value)
          Deprecated.  
 void SimpleQuery.setDouble(java.lang.String parameterName, double value)
          Deprecated.  
 void SimpleQuery.setDouble(int parameterId, double value)
          Deprecated.  
 void SimpleQuery.setBigDecimal(java.lang.String parameterName, java.math.BigDecimal value)
          Deprecated.  
 void SimpleQuery.setBigDecimal(int parameterId, java.math.BigDecimal value)
          Deprecated.  
 void SimpleQuery.setString(java.lang.String parameterName, java.lang.String value)
          Deprecated.  
 void SimpleQuery.setString(int parameterId, java.lang.String value)
          Deprecated.  
 void SimpleQuery.setDate(java.lang.String parameterName, java.sql.Date value)
          Deprecated.  
 void SimpleQuery.setDate(int parameterId, java.sql.Date value)
          Deprecated.  
 void SimpleQuery.setTime(java.lang.String parameterName, java.sql.Time value)
          Deprecated.  
 void SimpleQuery.setTime(int parameterId, java.sql.Time value)
          Deprecated.  
 void SimpleQuery.setTimestamp(java.lang.String parameterName, java.sql.Timestamp value)
          Deprecated.  
 void SimpleQuery.setTimestamp(int parameterId, java.sql.Timestamp value)
          Deprecated.  
 int SimpleQuery.findInParameter(java.lang.String parameterName)
          Deprecated.  
 IParameterMetaData SimpleQuery.getParameterMetaData()
          Deprecated.  
 void SimpleQuery.setSortSpec(SortSpec sortBy)
          Deprecated.  
 SortSpec SimpleQuery.getSortSpec()
          Deprecated.  
 IConnection SimpleDriver.getConnection(java.lang.String dataSourceType)
          Deprecated.  
protected  IConnection SimpleDriver.newConnection(java.lang.String dataSourceType)
          Deprecated. Override to return a specific IConnection instance based on the type of data source.
 void SimpleDriver.setLogConfiguration(LogConfiguration logConfig)
          Deprecated.  
 int SimpleDriver.getMaxConnections()
          Deprecated.  
 IConnection SimpleDataSetMetaData.getConnection()
          Deprecated.  
 IResultSet SimpleDataSetMetaData.getDataSourceObjects(java.lang.String catalog, java.lang.String schema, java.lang.String object, java.lang.String version)
          Deprecated.  
 int SimpleDataSetMetaData.getDataSourceMajorVersion()
          Deprecated.  
 int SimpleDataSetMetaData.getDataSourceMinorVersion()
          Deprecated.  
 java.lang.String SimpleDataSetMetaData.getDataSourceProductName()
          Deprecated.  
 java.lang.String SimpleDataSetMetaData.getDataSourceProductVersion()
          Deprecated.  
 int SimpleDataSetMetaData.getSQLStateType()
          Deprecated.  
 boolean SimpleDataSetMetaData.supportsMultipleResultSets()
          Deprecated.  
 boolean SimpleDataSetMetaData.supportsMultipleOpenResults()
          Deprecated.  
 boolean SimpleDataSetMetaData.supportsNamedResultSets()
          Deprecated.  
 boolean SimpleDataSetMetaData.supportsNamedParameters()
          Deprecated.  
 boolean SimpleDataSetMetaData.supportsInParameters()
          Deprecated.  
 boolean SimpleDataSetMetaData.supportsOutParameters()
          Deprecated.  
 void SimpleConnection.open(java.util.Properties connProperties)
          Deprecated.  
 void SimpleConnection.close()
          Deprecated.  
 boolean SimpleConnection.isOpen()
          Deprecated.  
 IDataSetMetaData SimpleConnection.getMetaData(java.lang.String dataSetType)
          Deprecated.  
 IQuery SimpleConnection.newQuery(java.lang.String dataSetType)
          Deprecated.  
 int SimpleConnection.getMaxQueries()
          Deprecated.  
 void SimpleConnection.commit()
          Deprecated.  
 void SimpleConnection.rollback()
          Deprecated.  
 

Uses of OdaException in org.eclipse.birt.data.oda.util.manifest
 

Methods in org.eclipse.birt.data.oda.util.manifest that throw OdaException
 ExtensionManifest ManifestExplorer.getExtensionManifest(java.lang.String extensionId)
          Deprecated. Returns the extension configuration information found in the plugin manifest file of the specified data source extension.
 DataSetType ExtensionManifest.getDataSetType(java.lang.String dataSetElementID)
          Deprecated. Returns the DataSetType instance that represents the dataSet element with the given ID defined in this data source extension.
 



Copyright © 2005 Actuate Corp. All rights reserved.