static DB |
Base.open() |
|
static DB |
Base.open(String jndiName) |
Opens a connection from JNDI based on a registered name.
|
static DB |
Base.open(String driver,
String url,
String user,
String password) |
Opens a new connection based on JDBC properties and attaches it to a current thread.
|
static DB |
Base.open(String driver,
String url,
Properties props) |
Opens a new connection in case additional driver-specific parameters need to be passed in.
|
static DB |
Base.open(String jndiName,
Properties jndiProperties) |
Opens a new connection from JNDI data source by name using explicit JNDI properties.
|
static DB |
Base.open(DataSource dataSource) |
Opens a connection from a datasource.
|
DB |
DB.open() |
|
DB |
DB.open(String jndiName) |
Opens a connection from JNDI based on a registered name.
|
DB |
DB.open(String driver,
String url,
String user,
String password) |
Opens a new connection based on JDBC properties and attaches it to a current thread.
|
DB |
DB.open(String driver,
String url,
Properties props) |
Opens a new connection in case additional driver-specific parameters need to be passed in.
|
DB |
DB.open(String jndiName,
Properties jndiProperties) |
Opens a new connection from JNDI data source by name using explicit JNDI properties.
|
DB |
DB.open(DataSource datasource) |
Opens a connection from a datasource.
|
DB |
DB.open(ConnectionConfig config) |
This method is used internally by the framework.
|