Event summary |
---|
BatchDone | Returned when the batch (specified by rowLimit) is completed. |
CloseDatabase | Request an open Database be closed, freeing up resources. CloseDatabase will succeed if the database is not currently open. |
Command | Sent to adapter to perform maintenance operations such as update or delete. |
CommandAck | The acknowledgement event for Command. |
CommitAck | The acknowledgement event for Commit. |
CommitRequest | Request that the IAF commit all outstanding event store or updates return CommitAck when the commit is completed. |
Connection | Event containing the actions to perform operations on a database. All operations except query are performed using this event. The Query event is used for queries. |
CreatePreparedQuery | Sent to adapter to create a prepared (reusable) database query. |
CreateStoreConfiguration | Request to create an instance of a configuration defining how an event will be stored to a database. |
CreateStoreStatement | Sent to adapter to create a custom insert/update statement for use with the store events. |
Database | Included in the response event for getDatabasesFull as a sequence of Database events, one for each available database. |
DatabaseOperationAck | The acknowledgement event for OpenDatabase() or CloseDatabase(). |
Databases | Response event for RequestDatabases. A sequence of Database events is returned, one for each available database. |
DataSource | Included in the response event for RequestDataSources(). A sequence of DataSource events is returned, one for each available dataSource. |
DataSources | Response event for RequestDataSources(), with a sequence of available dataSources. |
DBAcknowledge | Event sent when an acknowledgement is requested using the doSQLCmdAck, doSQLCommitAck, doSQLRollbackAck, doSQLQueryAck, or doSQLEventQueryAck actions. |
DBReconnectPolicy | An enumeration containing constants for the reconnection policy used when an adapter connection error occurs. |
DBUtil | Utility event to present a simplified and easier to use event interface to ADBC. |
DeletePreparedQuery | Sent to adapter to delete a prepared (reusable) database query. |
DeleteStoreConfiguration | Request to stop an instance of a store configuration. |
DeleteStoreStatement | Sent to adapter to delete a custom insert/update statement for use with the store events. |
Discovery | Event containing the actions to perform discovery of ADBC adapter resources. This is used to find the available data sources (JDBC, Sim, etc.) and the default databases and query templates (named queries) configured for those data sources. |
GetNextBatch | Sent to the adapter to request the next rowLimit set of events from a running query. |
NamedQueries | All named query information available on this serviceId. |
NamedQuery | The named query. |
OpenDatabase | Request a connection to an existing Database (ODBC, JDBC, etc.). |
ParameterData | The parameter data for a parameter of a named query. |
PauseQuery | Request that a running query be paused. |
PreparedQuery | Event containing the actions to create a prepared query statement on a database. |
PreparedQueryAck | The acknowledgement event for CreatePreparedQuery or DeletePreparedQuery. |
Query | Event containing the actions to perform a query on a database. |
QueryDone | Query is done. Message is NULL if the query has succeeded, not NULL if an error has occurred. |
QueryStatus | Status event in response to the StartQuery event. QueryStatus() contains the status of a currently active query request. |
RequestDatabases | Request a list of all available databases. |
RequestDataSources | Request DataSources available for a given ADBC adapter. |
RequestNamedQueries | Request all named queries from a data source. |
ResultEvent | Response to the StartQuery or GetNextBatch event. |
ResultSchema | Event in response to the StartQuery event to indicate the result's schema. |
RollbackAck | The acknowledgement event for Rollback. |
RollbackRequest | Request that the IAF rollback all outstanding event store or updates return RollbackAck when the rollback is completed. |
ServiceMonitorOnline | Send this event from any service monitor used with the ADBC adapter when the monitor comes online. |
ServiceMonitorUnloaded | Send this event from any service monitor used with the ADBC adapter. |
StartQuery | Sent to adapter to start a database query. |
StartStoreConfiguration | Request to start an instance of a store configuration. |
StopAllQueries | Request that all running queries on all databases be stopped. StopAllQueries will succeed if all queries have already been stopped. |
StopAllQueriesAck | The acknowledgement event for StopAllQueries. |
StopQuery | Request that a running query be stopped. |
StopStoreConfiguration | Request to stop an instance of a store configuration. |
StoreConfigurationAck | Response to store configuration request. |
StoreConfigurationReady | Notification that the store configuration is ready to accept events for storage. |
StoreData | Sent to adapter to store the data in the fieldValues field. |
StoreEvent | Sent to the adapter to store the event contained in the eventData field. |
StoreOperationAck | The acknowledgement event for StoreEvent or StoreData. |
StoreOperationError | The error notification event for store operations. |
StoreStatementAck | The acknowledgement event for CreateStoreStatement or DeleteStoreStatement. |