blob: da76ef2caaa7c2e151a7e3ffa75c1b8cbd735c28 (
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
|
<?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.
*
* @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)
{
}
}
?>
|