| Package | Description | 
|---|---|
| org.axonframework.eventsourcing.eventstore.jdbc | 
 JDBC Implementation of the EventStore. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
EventSchema | 
EventSchema.Builder.build()
Builds a new  
EventSchema from builder values. | 
protected EventSchema | 
JdbcEventStorageEngine.schema()
Returns the  
EventSchema that defines the table and column names of event tables in the database. | 
| Modifier and Type | Method and Description | 
|---|---|
PreparedStatement | 
Oracle11EventTableFactory.createDomainEventTable(Connection connection,
                      EventSchema schema)  | 
PreparedStatement | 
EventTableFactory.createDomainEventTable(Connection connection,
                      EventSchema schema)
Creates a PreparedStatement that allows for the creation of the table to store Event entries. 
 | 
PreparedStatement | 
AbstractEventTableFactory.createDomainEventTable(Connection connection,
                      EventSchema schema)  | 
PreparedStatement | 
Oracle11EventTableFactory.createSnapshotEventTable(Connection connection,
                        EventSchema schema)  | 
PreparedStatement | 
EventTableFactory.createSnapshotEventTable(Connection connection,
                        EventSchema schema)
Creates a PreparedStatement that allows for the creation of the table to store Snapshots. 
 | 
PreparedStatement | 
AbstractEventTableFactory.createSnapshotEventTable(Connection connection,
                        EventSchema schema)  | 
| Constructor and Description | 
|---|
JdbcEventStorageEngine(Serializer serializer,
                      EventUpcaster upcasterChain,
                      PersistenceExceptionResolver persistenceExceptionResolver,
                      Serializer eventSerializer,
                      Integer batchSize,
                      ConnectionProvider connectionProvider,
                      TransactionManager transactionManager,
                      Class<?> dataType,
                      EventSchema schema,
                      Integer maxGapOffset,
                      Long lowestGlobalSequence)
Initializes an EventStorageEngine that uses JDBC to store and load events. 
 | 
Copyright © 2010–2018. All rights reserved.