Uses of Interface
fedora.server.utilities.DDLConverter

Packages that use DDLConverter
fedora.server.storage   
fedora.server.utilities   
 

Uses of DDLConverter in fedora.server.storage
 

Constructors in fedora.server.storage with parameters of type DDLConverter
ConnectionPool(java.lang.String driver, java.lang.String url, java.lang.String username, java.lang.String password, DDLConverter ddlConverter, int maxActive, int maxIdle, long maxWait, int minIdle, long minEvictableIdleTimeMillis, int numTestsPerEvictionRun, long timeBetweenEvictionRunsMillis, boolean testOnBorrow, boolean testOnReturn, boolean testWhileIdle, byte whenExhaustedAction)
          Constructs a ConnectionPool that can provide TableCreatingConnections.
 

Uses of DDLConverter in fedora.server.utilities
 

Classes in fedora.server.utilities that implement DDLConverter
 class McKoiDDLConverter
          A DDLConverter that works with McKoi.
 class MySQLDDLConverter
          A DDLConverter that works with MySQL.
 class OracleDDLConverter
          A DDLConverter that works with Oracle.
 class PostgresDDLConverter
          A DDLConverter that works with Postgres.
 

Methods in fedora.server.utilities that return DDLConverter
 DDLConverter TableCreatingConnection.getDDLConverter()
          Get the DDLConverter this TableCreatingConnection works with.
 

Constructors in fedora.server.utilities with parameters of type DDLConverter
TableCreatingConnection(java.sql.Connection wrapped, DDLConverter converter)
          Constructs a TableCreatingConnection.