codeigniter 3.0.1中的数据库错误

时间:2015-09-26 19:08:02

标签: php mysql codeigniter

Error Number: 1064

You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'WHERE `id` = '0bc6ecedf769fe4ccd8199bd7bc76c15369c7419'' at line 2

SELECT `data` WHERE `id` = '0bc6ecedf769fe4ccd8199bd7bc76c15369c7419'

Filename: libraries/Session/drivers/Session_database_driver.php

Line Number: 160

我不知道这个错误是怎么来的,我所做的只是将我的模型,控制器,帮助器和视图从CI 2.2复制到CI 3.0.1

我的会话配置看起来像这样

$config['sess_driver'] = 'database';
$config['sess_cookie_name'] = 'ci_sessions';
$config['sess_expiration'] = 7200;
$config['sess_save_path'] = NULL;
$config['sess_match_ip'] = FALSE;
$config['sess_time_to_update'] = 300;
$config['sess_regenerate_destroy'] = FALSE;

这些是我的数据库设置

$db['default'] = array(
    'dsn'   => '',
    'hostname' => 'host',
    'username' => 'admin',
    'password' => 'password',
    'database' => 'db_name',
    'dbdriver' => 'mysqli',
    'dbprefix' => '',
    'pconnect' => FALSE,
    'db_debug' => (ENVIRONMENT !== 'production'),
    'cache_on' => FALSE,
    'cachedir' => '',
    'char_set' => 'utf8',
    'dbcollat' => 'utf8_general_ci',
    'swap_pre' => '',
    'encrypt' => FALSE,
    'compress' => FALSE,
    'stricton' => FALSE,
    'failover' => array(),
    'save_queries' => TRUE
);

1 个答案:

答案 0 :(得分:2)

$config['sess_save_path'] = NULL;设置为null而不是table name