public function execute(Charcoal_String $sql)
 {
     $flag = new Charcoal_ErrorReportingSwitcher(0, E_DEPRECATED);
     // 接続処理
     $this->connect();
     $start = Benchmark::nowTime();
     // SQLを実行
     $this->_query($sql);
     // ログ
     $now = Benchmark::nowTime();
     $elapse = round($now - $start, 4);
     log_debug('sql', "execute() end. time=[{$elapse}]sec.");
 }