Welcome Guest, Not a member yet? Register   Sign In
ci_session with SQLITE3 not working
#1

[eluser]Unknown[/eluser]
So i just setup CI to work with sqlite via PDO and everything went smooth (i can query the sqlite db and all is fine)

Now i have a problem..i set

Code:
$config['sess_use_database'] = TRUE;

and probles arises...

Code:
Fatal error: Call to a member function execute() on a non-object in C:\wamp\www\CI\system\database\drivers\pdo\pdo_driver.php on line 193
Call Stack
# Time Memory Function Location
1 0.0030 151392 {main}( ) ..\index.php:0
2 0.0109 187664 require_once( 'C:\wamp\www\CI\system\core\CodeIgniter.php' ) ..\index.php:202
3 0.0885 669544 Login->__construct( ) ..\CodeIgniter.php:308
4 0.0885 669600 CI_Controller->__construct( ) ..\login.php:7
5 0.0986 793008 CI_Loader->initialize( ) ..\Controller.php:51
6 0.0986 792984 CI_Loader->_ci_autoloader( ) ..\Loader.php:152
7 0.1362 1331192 CI_Loader->library( ) ..\Loader.php:1178
8 0.1363 1331304 CI_Loader->_ci_load_class( ) ..\Loader.php:216
9 0.1445 1412936 CI_Loader->_ci_init_class( ) ..\Loader.php:975
10 0.1462 1414368 CI_Session->__construct( ) ..\Loader.php:1099
11 0.1601 1483408 CI_Session->sess_read( ) ..\Session.php:106
12 0.1731 1486592 CI_DB_active_record->get( ) ..\Session.php:213
13 0.1735 1487800 CI_DB_driver->query( ) ..\DB_active_rec.php:963
14 0.1736 1488824 CI_DB_driver->simple_query( ) ..\DB_driver.php:299
15 0.1736 1488856 CI_DB_pdo_driver->_execute( ) ..\DB_driver.php:453

so i don't know which is the problem, my sqlite ci_session table is this:

Code:
CREATE TABLE ci_session (
session_id VARCHAR(40) DEFAULT '0' NOT NULL,
ip_address VARCHAR(45) DEFAULT '0' NOT NULL,
user_agent VARCHAR(120) NOT NULL,
last_activity INT(10) DEFAULT 0 NOT NULL,
user_data VARCHAR(255) NOT NULL,
PRIMARY KEY (session_id)
);

and i suppose is fine (except i didn't put the last line from the original sql statment [ KEY `last_activity_idx` (`last_activity`) ] and i'm pretty sure the problem is not related to this)

Any help will be really appreciated guys Smile
#2

[eluser]Unknown[/eluser]
Really no one can help me with this?! :/




Theme © iAndrew 2016 - Forum software by © MyBB