Uses of Interface
com.sag.osami.contextstore.storage.jdbc.IJDBCDialect

Packages that use IJDBCDialect
com.sag.osami.contextstore   
com.sag.osami.contextstore.storage.impl   
com.sag.osami.contextstore.storage.jdbc   
 

Uses of IJDBCDialect in com.sag.osami.contextstore
 

Methods in com.sag.osami.contextstore with parameters of type IJDBCDialect
 ContextStoreBuilder ContextStoreBuilder.jdbcDialect(IJDBCDialect jdbcDialect)
          Sets the dialect to be used by the JDBCStorage.
 

Uses of IJDBCDialect in com.sag.osami.contextstore.storage.impl
 

Constructors in com.sag.osami.contextstore.storage.impl with parameters of type IJDBCDialect
JDBCStorage(IJDBCDialect dialect, java.util.Properties jdbcProps)
          Creates a JDBC-based storage with the given dialect, taking the JDBC URL etc. from the given properties
JDBCStorage(IJDBCDialect dialect, java.lang.String jdbcUrl, boolean autodrop)
          Creates a JDBC-based storage with the given dialect
JDBCStorage(IJDBCDialect dialect, java.lang.String jdbcUrl, java.lang.String jdbcUsername, java.lang.String jdbcPassword, boolean autodrop)
          Creates a JDBC-based storage with the given dialect
 

Uses of IJDBCDialect in com.sag.osami.contextstore.storage.jdbc
 

Classes in com.sag.osami.contextstore.storage.jdbc that implement IJDBCDialect
 class DerbyDialect
          A JDBC dialect for Derby.
 class GenericJDBCDialect
          A basic implementation of a JDBC dialect, using only standard SQL.
 class MysqlDialect
           
 class PostgresqlDialect
           
 class SqliteDialect