blob: 6607aae2d28c89167ea38ee5c2877617f45fe17d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
<?php
namespace SMW;
/**
* Interface for database connection providers.
*
* @ingroup SMW
*
* @licence GNU GPL v2+
* @since 1.9
*
* @author Jeroen De Dauw < jeroendedauw@gmail.com >
*/
interface DBConnectionProvider {
/**
* Returns the database connection.
* Initialization of this connection is done if it was not already initialized.
*
* @since 0.1
*
* @return DatabaseBase
*/
public function getConnection();
/**
* Releases the connection if doing so makes any sense resource wise.
*
* @since 0.1
*/
public function releaseConnection();
}
|