Task A: Initializing ActiveSpaces Objects
- Procedure
- Initialize the ActiveSpaces library, if required.
C API - call tibdg_Open()Java API - not requiredGo API - not required
- Connect to a data grid. For details, see Connection.
- Create
Session objects.
See Session.
- Create objects that stay open for the duration of the Connection.
- Open Table objects to run key/value ops on the table. See Table.
- Create TableListener objects to monitor events corresponding to changes in the table. See Table Listener.
- Create
Statement objects to support running the same SQL more than once (commonly known as a
preparedstatement). See Statement.