ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
DatabaseConnection.php
Go to the documentation of this file.
1<?php
2
32 function autoCommit($mode)
33 {
34 }
35
51 function query($sql, $params = array())
52 {
53 }
54
58 function begin()
59 {
60 }
61
65 function commit()
66 {
67 }
68
72 function rollback()
73 {
74 }
75
91 function getOne($sql, $params = array())
92 {
93 }
94
109 function getRow($sql, $params = array())
110 {
111 }
112
126 function getAll($sql, $params = array())
127 {
128 }
129}
130
getRow($sql, $params=array())
Run an SQL query and return the first row of the result set, if any.
getOne($sql, $params=array())
Run an SQL query and return the first column of the first row of the result set, if any.
begin()
Starts a transaction on this connection, if supported.
rollback()
Performs a rollback on this connection, if supported.
autoCommit($mode)
Sets auto-commit mode on this database connection.
query($sql, $params=array())
Run an SQL query with the specified parameters, if any.
getAll($sql, $params=array())
Run an SQL query with the specified parameters, if any.
commit()
Commits a transaction on this connection, if supported.
$params
Definition: example_049.php:96