Page 1 of 1

error sqlite extension

PostPosted: 24. January 2014 20:01
by robofortea
Hello,
installing eyeos i have an error saying SQLite extension is not installed, but looking in phpinfo i find that pdo driver for sqlite3.x is enabled. What do i need to change? (and how?)
thanks

Re: error sqlite extension

PostPosted: 25. January 2014 12:54
by Nobbie
robofortea wrote:What do i need to change? (and how?)


Ask in an eyeos forum why it does not recognize sqlite3.

Maybe eyeos (what i dont know) needs sqlite or sqlite2 instead of sqlite3 (unfortunately, these are are portable to each other).

Re: error sqlite extension

PostPosted: 25. January 2014 14:05
by robofortea
Thanks, but I think it's something related with getting SQLite extension installed, which regards to Xampp. Anybody knows how can i get that?
Thanks again

Re: error sqlite extension

PostPosted: 25. January 2014 14:26
by Altrea
Hi robofortea,

robofortea wrote:but I think it's something related with getting SQLite extension installed, which regards to Xampp.

And we know, that you are wrong. SQLite 3 is included and activated by default. No need to install anything to get SQLite 3 working.

Test it out yourself, you can create a database, database table, database set and output the set again:
Code: Select all
<?php
$db = new SQLite3('mysqlitedb.db');

$db->exec('CREATE TABLE foo (bar STRING)');
$db->exec("INSERT INTO foo (bar) VALUES ('This is a test')");

$result = $db->query('SELECT bar FROM foo');
var_dump($result->fetchArray());
?>


best wishes,
Altrea

Re: error sqlite extension

PostPosted: 25. January 2014 17:09
by robofortea
Thanks Altrea

Re: error sqlite extension

PostPosted: 24. July 2015 04:54
by thiemksb
Sqlite 3 was enabled. but eyeos 2.5 notice "not installed". Please help me.

Re: error sqlite extension

PostPosted: 24. July 2015 09:24
by Altrea
Ask at an eyeos support channel if eyeos uses sqlite3. Maybe you will need sqlite2 or sqlite.

We cannot provide any support for eyeos

Re: error sqlite extension

PostPosted: 24. July 2015 13:39
by thiemksb
thank you, i will try,