ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
class.arStatement.php
Go to the documentation of this file.
1<?php
2
10abstract class arStatement {
11
15 protected $table_name_as = '';
16
17
23 abstract public function asSQLStatement(ActiveRecord $ar);
24
25
31 public function asORACLEStatement(ActiveRecord $ar){
32 return self::asSQLStatement($ar);
33 }
34
35
39 public function getTableNameAs() {
41 }
42
43
47 public function setTableNameAs($table_name_as) {
48 $this->table_name_as = $table_name_as;
49 }
50}
51
52?>
Class ActiveRecord.
An exception for terminatinating execution or to throw for unit testing.
Class arStatement.
setTableNameAs($table_name_as)
asORACLEStatement(ActiveRecord $ar)
asSQLStatement(ActiveRecord $ar)