2002!

Fuel\Core\Database_Exception [ 2002 ]:
SQLSTATE[HY000] [2002] そのようなファイルやディレクトリはありません

COREPATH/classes/database/pdo/connection.php @ line 112

107                else
108                {
109                    $error_code 0;
110                }
111            }
112            throw new \Database_Exception(str_replace($this->_config['connection']['password'], str_repeat('*'10), $e->getMessage()), $error_code$e);
113        }
114    }
115
116    /**
117     * @return bool

Backtrace

  1. COREPATH/classes/database/pdo/connection.php @ line 447
    442     * @return string
    443     */
    444    public function escape($value)
    445    {
    446        // Make sure the database is connected
    447        $this->_connection or $this->connect();
    448
    449        $result $this->_connection->quote($value);
    450
    451        // poor-mans workaround for the fact that not all drivers implement quote()
    452        if (empty($result))
    
  2. COREPATH/classes/database/connection.php @ line 617
    612        {
    613            // Convert to non-locale aware float to prevent possible commas
    614            return sprintf('%F'$value);
    615        }
    616
    617        return $this->escape($value);
    618    }
    619
    620    /**
    621     Quote a database table name and adds the table prefix if needed.
    622     *
    
  3. COREPATH/classes/database/query/builder.php @ line 136
    131                                // Set the parameter as the value
    132                                $value $this->_parameters[$value];
    133                            }
    134
    135                            // Quote the entire value normally
    136                            $value $db->quote($value);
    137                        }
    138
    139                        // Append the statement to the query
    140                        $sql .= $db->quote_identifier($column).' '.$op.' '.$value;
    141                    }
    
  4. COREPATH/classes/database/query/builder/select.php @ line 442
    437        }
    438
    439        if ( ! empty($this->_where))
    440        {
    441            // Add selection conditions
    442            $query .= ' WHERE '.$this->_compile_conditions($db$this->_where);
    443        }
    444
    445        if ( ! empty($this->_group_by))
    446        {
    447            // Add sorting
    
  5. COREPATH/classes/database/query.php @ line 268
    263            // Database_Query_Builder_Select then use the slave connection if configured
    264            $db = \Database_Connection::instance($dbnull, ! $this instanceof \Database_Query_Builder_Select);
    265        }
    266
    267        // Compile the SQL query
    268        $sql $this->compile($db);
    269
    270        // make sure we have a SQL type to work with
    271        if (is_null($this->_type))
    272        {
    273            // get the SQL statement type without having to duplicate the entire statement
    
  6. APPPATH/classes/common.php @ line 184
    179                DB::expr('prefectures.nameja AS prefecturesname'))
    180            ->from('users')
    181            ->join('prefectures''left')
    182            ->on('users.prefectures''=''prefectures.id')
    183            ->where('users.id''='$id)
    184            ->execute()
    185            ->as_array();
    186        return $res;
    187    }
    188    
    189    /**
    
  7. APPPATH/classes/controller/public.php @ line 350
    345            $data['id'] = Input::get('id'0);
    346            //
    347            if((int)$data['id']>0)
    348            {
    349                //ユーザ情報取得
    350                $userinfo common::get_userinfo($data['id']);
    351                $data['introduction'] = $userinfo[0];
    352                //存在確認
    353                if(isset($data['introduction']['usersid']) && $data['introduction']['usersid'] != '')
    354                {
    355                    //詳細情報取得
    
  8. COREPATH/classes/request.php @ line 454
    449                    // fire any controller started events
    450                    \Event::instance()->has_events('controller_started') and \Event::instance()->trigger('controller_started''''none');
    451
    452                    $class->hasMethod('before') and $class->getMethod('before')->invoke($this->controller_instance);
    453
    454                    $response $action->invokeArgs($this->controller_instance$this->method_params);
    455
    456                    $class->hasMethod('after') and $response $class->getMethod('after')->invoke($this->controller_instance$response);
    457
    458                    // fire any controller finished events
    459                    \Event::instance()->has_events('controller_finished') and \Event::instance()->trigger('controller_finished''''none');
    
  9. DOCROOT/index.php @ line 71
    66            $response Response::forge($response);
    67        }
    68    }
    69    elseif ($e === false)
    70    {
    71        $response Request::forge()->execute()->response();
    72    }
    73    elseif ($route)
    74    {
    75        $response Request::forge($routefalse)->execute(array($e))->response();
    76    }
    
  10. DOCROOT/index.php @ line 92
    87{
    88    // Boot the app...
    89    require APPPATH.'bootstrap.php';
    90
    91    // ... and execute the main request
    92    $response $routerequest();
    93}
    94catch (HttpBadRequestException $e)
    95{
    96    $response $routerequest('_400_'$e);
    97}