예제 #1
0
 /**
  * Checks if a table exists
  *
  * @param string $tableName
  * @param string $schemaName
  * @return boolean
  */
 public function tableExists($tableName, $schemaName = null)
 {
     $this->_connect();
     return parent::tableExists($tableName, $schemaName);
 }