blob: 69be651d3ac7f527d47e285ffba43e883056acce (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
<?php
/**
* The Auth_OpenID_DatabaseConnection class, which is used to emulate
* a PEAR database connection.
*
* @package OpenID
* @author JanRain, Inc. <openid@janrain.com>
* @copyright 2005 Janrain, Inc.
* @license http://www.gnu.org/copyleft/lesser.html LGPL
*/
/**
* An empty base class intended to emulate PEAR connection
* functionality in applications that supply their own database
* abstraction mechanisms. See {@link Auth_OpenID_SQLStore} for more
* information. You should subclass this class if you need to create
* an SQL store that needs to access its database using an
* application's database abstraction layer instead of a PEAR database
* connection.
*
* @package OpenID
*/
class Auth_OpenID_DatabaseConnection {
function setFetchMode($mode)
{
}
function autoCommit($mode)
{
}
function query($sql)
{
}
function begin()
{
}
function commit()
{
}
function rollback()
{
}
function getOne($sql)
{
}
function getRow($sql)
{
}
function getAll($sql)
{
}
}
?>
|