Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle Real-Time Decisions
11g Release 1 (11.1.1)

E17787-01


Package com.sigmadynamics.server.DataServices.DatabaseProvider

Provides classes for interacting with databases of many types.

See:
          Description

Interface Summary
BatchUpdaterClient  
DatabaseProviderInterface  
DatabaseProviderMetaData  
DatabaseSettings  
DeadlockHandler  
ManualFlushTableInserter  
SDResultSet ResultSet
StoredProcedure Interface that provides the functionality to call stored procedures.
TableDeleter Interface that provides the functionality to delete data in relational tables.
TableInserter Interface that provides the functionality to insert data into a relational table.
TableReader Interface that allows you to read relational tables.
TableUpdater Interface that allows you to update data in relational tables.
Where Interface that provides Where clause handling.
WriteOnlyStoredProcedure This is the interface of stored procedures that can be executed either asynchronously or in batches or both.

 

Class Summary
BatchUpdater  
DatabaseInfo This Class has a static allInfoObjects that holds instances of the class.
DatabaseProvider This class provides platform support for reading, updating, deleting, and inserting records across many different types of databases.
DatabaseTable  
DateWrapper Created by IntelliJ IDEA.
DefaultDeadlockHandler  
SchemaObjectInfo  
StoredProcCacheEntry User: UjjwalSingh Date: Aug 22, 2003
StoredProcedureInfo  
StoredProcedureParameterInfo  
TableCacheEntry  
TableInfo  
TableWithPuts  
Util  
ValueSetter This class takes values that have been saved, along with type information, and makes the proper JDBC calls to set argument values into java.sql.Statement objects.

 

Exception Summary
DatabaseProviderException  

 

Package com.sigmadynamics.server.DataServices.DatabaseProvider Description

Provides classes for interacting with databases of many types. The most important class is DatabaseProvider.

To obtain an instance of DatabaseProvider you may write code like:

DatabaseProvider db = new DatabaseProvider("MYDS");

or

SDDataSourceInterface ds = SDDataSource.getDataSource("MYDS"); DatabaseProvider db = DatabaseProvider(ds);


Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle Real-Time Decisions
11g Release 1 (11.1.1)

E17787-01


Copyright © 2010, Oracle. All rights reserved.