0

Hi I'd like to export data from a sqlite2 database into SQL to import into phpMyAdmin. Thanks.

Luke Wenke
  • 1,149
  • 2
  • 23
  • 43

1 Answers1

0

After searching I found sqlite2

http://www.sqlite.org/sqlite-2_8_17.zip

And to export it to SQL you do:

sqlite database.db .dump > output.txt

To stop an error in phpMyAdmin you need to delete the first line: "BEGIN TRANSACTION;"

Luke Wenke
  • 1,149
  • 2
  • 23
  • 43