2

I have created the database for my Android app using SQLiteStudio 3.0.5 and now I need to save/export the one as .db file, but i found only the export to .sql-file. So, what should I do to make such procedure?

Sergey V.
  • 981
  • 2
  • 12
  • 24

2 Answers2

3

When you create database in SQLiteStudio it already is a proper sqlite database file. If you need to name it with .db extension, just rename the file in any file manager.

OneCricketeer
  • 179,855
  • 19
  • 132
  • 245
Googie
  • 5,742
  • 2
  • 19
  • 31
1

It sounds like you are trying to export the SQL command, and not the database itself.

Right-click on the database, and select "Export the database".

Adam Howell
  • 415
  • 1
  • 11
  • 24