Package net.ontopia.persistence.proxy
Interface ConnectionFactoryIF
-
- All Known Implementing Classes:
DataSourceConnectionFactory
public interface ConnectionFactoryIF
INTERNAL: An interface for creating/requesting new JDBC connection object.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
close()
INTERNAL: Closes the connection factory.Connection
requestConnection()
INTERNAL: Requests a new connection object.
-
-
-
Method Detail
-
requestConnection
Connection requestConnection() throws SQLException
INTERNAL: Requests a new connection object.- Throws:
SQLException
-
close
void close()
INTERNAL: Closes the connection factory.
-
-