ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
class.arStatement.php
Go to the documentation of this file.
1<?php
2
10abstract class arStatement
11{
12
16 protected $table_name_as = '';
17
18
24 abstract public function asSQLStatement(ActiveRecord $ar);
25
26
32 public function asORACLEStatement(ActiveRecord $ar)
33 {
34 return self::asSQLStatement($ar);
35 }
36
37
41 public function getTableNameAs()
42 {
44 }
45
46
51 {
52 $this->table_name_as = $table_name_as;
53 }
54}
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)