Uses of Interface
com.googlecode.jdbw.DatabaseServerType

Packages that use DatabaseServerType
com.googlecode.jdbw   
com.googlecode.jdbw.impl   
com.googlecode.jdbw.server   
com.googlecode.jdbw.server.h2   
com.googlecode.jdbw.server.mysql   
com.googlecode.jdbw.server.postgresql   
com.googlecode.jdbw.server.sybase   
 

Uses of DatabaseServerType in com.googlecode.jdbw
 

Fields in com.googlecode.jdbw declared as DatabaseServerType
static DatabaseServerType DatabaseServerTypes.H2_FILE
           
static DatabaseServerType DatabaseServerTypes.H2_IN_MEMORY
           
static DatabaseServerType DatabaseServerTypes.H2_NETWORK
           
static DatabaseServerType DatabaseServerTypes.MYSQL
           
static DatabaseServerType DatabaseServerTypes.POSTGRESQL
           
static DatabaseServerType DatabaseServerTypes.SYBASE_ASE
           
 

Fields in com.googlecode.jdbw with type parameters of type DatabaseServerType
static Set<DatabaseServerType> DatabaseServerTypes.ALL_KNOWN_SERVER_TYPES
           
 

Methods in com.googlecode.jdbw that return DatabaseServerType
 DatabaseServerType DatabaseConnection.getServerType()
           
 DatabaseServerType DatabaseServer.getServerType()
           
 

Constructors in com.googlecode.jdbw with parameters of type DatabaseServerType
AutoExecutor(DataSource dataSource, DatabaseServerType serverType)
           
 

Uses of DatabaseServerType in com.googlecode.jdbw.impl
 

Methods in com.googlecode.jdbw.impl that return DatabaseServerType
 DatabaseServerType DatabaseConnectionImpl.getServerType()
           
 

Constructors in com.googlecode.jdbw.impl with parameters of type DatabaseServerType
DatabaseConnectionImpl(Connection connection, DatabaseServerType databaseServerType)
          Creates a DatabaseConnectionImpl backed by one physical database connection.
DatabaseConnectionImpl(DataSource dataSource, DatabaseServerType databaseServerType)
          Creates a DatabaseConnectionImpl backed by a DataSource.
DatabaseConnectionImpl(DataSource dataSource, DataSourceCloser dataSourceCloser, DatabaseServerType databaseServerType)
          Creates a DatabaseConnectionImpl backed by a DataSource.
 

Uses of DatabaseServerType in com.googlecode.jdbw.server
 

Classes in com.googlecode.jdbw.server that implement DatabaseServerType
 class AbstractDatabaseType
          Includes some fundamental checks for connection errors and default implementations for some JDBW objects
 

Uses of DatabaseServerType in com.googlecode.jdbw.server.h2
 

Classes in com.googlecode.jdbw.server.h2 that implement DatabaseServerType
static class H2ServerTypes.FileBased
           
static class H2ServerTypes.H2ServerType
           
static class H2ServerTypes.InMemory
           
static class H2ServerTypes.Network
           
 

Methods in com.googlecode.jdbw.server.h2 that return DatabaseServerType
 DatabaseServerType H2InMemoryServer.getServerType()
           
 DatabaseServerType H2NetworkServer.getServerType()
           
 DatabaseServerType H2FileBasedServer.getServerType()
           
 

Uses of DatabaseServerType in com.googlecode.jdbw.server.mysql
 

Classes in com.googlecode.jdbw.server.mysql that implement DatabaseServerType
 class MySQLServerType
          A MySQL database server
 

Methods in com.googlecode.jdbw.server.mysql that return DatabaseServerType
 DatabaseServerType MySQLServer.getServerType()
           
 

Uses of DatabaseServerType in com.googlecode.jdbw.server.postgresql
 

Classes in com.googlecode.jdbw.server.postgresql that implement DatabaseServerType
 class PostgresqlServerType
           
 

Methods in com.googlecode.jdbw.server.postgresql that return DatabaseServerType
 DatabaseServerType PostgresqlServer.getServerType()
           
 

Uses of DatabaseServerType in com.googlecode.jdbw.server.sybase
 

Classes in com.googlecode.jdbw.server.sybase that implement DatabaseServerType
 class SybaseASEServerType
           
 

Methods in com.googlecode.jdbw.server.sybase that return DatabaseServerType
 DatabaseServerType SybaseASEServer.getServerType()
           
 



Copyright © 2012. All Rights Reserved.