Sorry about this question but i never worked with SQLite, and i gone through the SQLite site , downloaded "Precompiled Binaries For Windows" files tried to make them usable for my purpose but i couldnot, i saw with working tutorials with databases,tables.
My tasks is to get data from SQLite and put them into magento mysql DB. So for that i have got the SQLite DB dump file as .db3 file, txt file which has size of db dump file(20110125_SIZE).
So how can i import it into the SQLite. Please if anyone of you worked with SQLite3 help me to understand the .db3 file and how can i see the records from them.
I have got sqlite3 db dump as dbname.db3,
So then i tried to connect this sqllite from php. Here is my sample code which i got it from forum.
$db = openDatabase();
unset($db);
function openDatabase() {
$dbFile = realpath('dbname.db3');
echo $dbFile . "\n";
$needDbCreate = !file_exists($dbFile);
$db = new SQLiteDatabase($dbFile) or die((file_exists($dbFile)) ? "Unable to open" : "Unable to create");
if($needDbCreate) {
}
return $db;
}
But i am getting fatal exception.
Fatal error: Uncaught exception 'SQLiteException' with message 'SQLiteDatabase::_construct() [sqlitedatabase.--construct]: file is encrypted or is not a database' in C:\wamp\www\SQLITE\index.php:23 Stack trace: #0 C:\wamp\www\SQLITE\index.php(23): SQLiteDatabase->_construct('C:\wamp\www\SQL...') 1 C:\wamp\www\SQLITE\index.php(15): openDatabase() #2 {main} thrown in C:\wamp\www\SQLITE\index.php on line 23
But when i tried the same sqldump with the PDO , i got connected.
try {
$dbh = new PDO("sqlite:C:\wamp\www\SQLITE\dbname.db3");
echo 'Db Connected <br/>';
}
catch(PDOException $e)
{
echo $e->getMessage();
}
here i do not know the list of tables available in this dump so how can i query them to list and then getting records from them.
Please help me to solve this issue ti get connected and browse the tables from php.
Sorry for posting here in answer section, i wanted to highlight the code.
Thanks