vote up 0 vote down star

What is the most straightfoward way to dump a SQLite database into a SQL or CSV file?

EDIT: From PHP (PDO).

flag

How about include all relevant information the first time? – Jed Smith Oct 11 at 20:02
Sorry about that. :S – eyze Oct 11 at 20:05

1 Answer

vote up 2 vote down check

I can't help you with the PHP part, but the .dump meta-command will work from the command-line:

> sqlite3 yourdatabase.db .dump > yourdatabase.sql

EDIT: I guess if you have to do this from PHP, use system():

$dump = system('sqlite3 yourdatabase.db .dump'); // (1) or
system('sqlite3 yourdatabase.db .dump > yourdatabase.sql'); // (2)

(1) is a pretty bad idea if the database is large, as it will require quite a lot of memory.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.