예제 #1
0
파일: Table.php 프로젝트: jkimdon/cohomeals
 function __construct($db, $table)
 {
     parent::__construct($db, $table);
     $table = $this->escapeIdentifier($this->tableName);
     $this->schemaBuffer = new Search_MySql_QueryBuffer($db, 2000, "ALTER TABLE {$table} ");
     $this->dataBuffer = new Search_MySql_QueryBuffer($db, 100, '-- ');
     // Null Object, replaced later
 }