Exemplo n.º 1
0
 function setUp() {
     $this->fields_str = Query_Base::fields_to_sql($this->fields, $this->table);
 }
Exemplo n.º 2
0
 function setUp() {
     $this->fields_str = Query_Base::fields_to_sql($this->fields, $this->table);
     $this->testString = "UPDATE {$this->table} SET tField1 = :tfield1 ,testField2 = :testField2";
     $this->testValues = array('tfield1' => 'Blub', 'testField2' => 'Bluu');
     $this->testResultValues = array(':tfield1' => 'Blub', ':testField2' => 'Bluu');
 }