/**
  * @param Base $Base
  * @param string $table
  */
 public function __construct(SC $Base, $table)
 {
     $this->Base = $Base;
     $this->table = $table;
     $this->escapeChar = $Base->getEscapeQuote();
     $this->fkEnding = $Base->getFkEnding();
     $this->tableClause = "{$this->escapeChar}{$table}{$this->escapeChar}";
     $this->whereClause = '1';
 }