ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
class.arStatement.php
Go to the documentation of this file.
1 <?php
2 
10 abstract 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() {
40  return $this->table_name_as;
41  }
42 
43 
47  public function setTableNameAs($table_name_as) {
48  $this->table_name_as = $table_name_as;
49  }
50 }
51 
52 ?>
setTableNameAs($table_name_as)
Class ActiveRecord.
Class arStatement.
asORACLEStatement(ActiveRecord $ar)
asSQLStatement(ActiveRecord $ar)