Module org.tquadrat.foundation.sql
Package org.tquadrat.foundation.sql
Class SimpleConnectionProvider
java.lang.Object
org.tquadrat.foundation.sql.SimpleConnectionProvider
- All Implemented Interfaces:
ConnectionProvider
@ClassVersion(sourceVersion="$Id: SimpleConnectionProvider.java 1030 2022-04-06 13:42:02Z tquadrat $")
@API(status=STABLE,
since="0.1.0")
public final class SimpleConnectionProvider
extends Object
implements ConnectionProvider
An implementation of
ConnectionProvider
that will just call
DriverManager.getConnection(String,Properties)
to obtain a
Connection
.- Author:
- Thomas Thrien (thomas.thrien@tquadrat.org)
- Version:
- $Id: SimpleConnectionProvider.java 1030 2022-04-06 13:42:02Z tquadrat $
- Since:
- 0.1.0
- UML Diagram
-
UML Diagram for "org.tquadrat.foundation.sql.SimpleConnectionProvider"
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final Properties
The properties.private final String
The JDBC URL. -
Constructor Summary
ConstructorsConstructorDescriptionSimpleConnectionProvider
(String url, Properties properties) Creates a new instance ofSimpleConnectionProvider
. -
Method Summary
Modifier and TypeMethodDescriptionReturns a valid database connection.
-
Field Details
-
m_URL
The JDBC URL. -
m_Properties
The properties.
-
-
Constructor Details
-
SimpleConnectionProvider
Creates a new instance ofSimpleConnectionProvider
.- Parameters:
url
- The JDBC URL for the database with the calendar.properties
- The properties.
-
-
Method Details
-
getConnection
Returns a valid database connection.
In case of an error, the method will set the
errorCode
attribute of the returnedStatus
object.- Specified by:
getConnection
in interfaceConnectionProvider
- Returns:
- An instance of
Status
that holds the retrieved connection.
-