ILIAS  release_5-0 Revision 5.0.0-1144-gc4397b1f870
All Data Structures Namespaces Files Functions Variables Modules Pages
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 
query($sql, $params=array())
Run an SQL query with the specified parameters, if any.
commit()
Commits a transaction on this connection, if supported.
getAll($sql, $params=array())
Run an SQL query with the specified parameters, 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.
getRow($sql, $params=array())
Run an SQL query and return the first row of the result set, if any.
rollback()
Performs a rollback on this connection, if supported.
autoCommit($mode)
Sets auto-commit mode on this database connection.