ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
interface.ilDBStatement.php
Go to the documentation of this file.
1 <?php
2 
9 interface ilDBStatement {
10 
15  public function fetchRow($fetch_mode);
16 
17 
22  public function fetch($fetch_mode = ilDBConstants::FETCHMODE_ASSOC);
23 
24 
28  public function rowCount();
29 
30 
34  public function numRows();
35 
36 
40  public function fetchObject();
41 
42 
46  public function fetchAssoc();
47 
48 
53  public function execute($a_data = null);
54 }
fetch($fetch_mode=ilDBConstants::FETCHMODE_ASSOC)
fetchRow($fetch_mode)
execute($a_data=null)
Interface ilDBStatement.