6

Do you know any way to create sql script from existing database in SQLite 3?

4
  • What kind of script? Also note that tool recommendations are off-topic on stack overflow but this question probably can be edited to be not about tools but rather methods. Commented Oct 8, 2014 at 6:44
  • Have you tried reading the documentation? Commented Oct 8, 2014 at 6:49
  • I need to create tables and insert script. Commented Oct 8, 2014 at 6:50
  • stackoverflow.com/questions/75675/… Commented Oct 8, 2014 at 7:24

1 Answer 1

9

I need to create tables and insert script.

You can use the sqlite3 command line tool and use .dump to output the SQL that creates the database schema and inserts the data there.

Sign up to request clarification or add additional context in comments.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.