-1

Let's say I were to open SQLite and create a table, then insert data into it and save to disk.

Could I then import this file in another SQLite session and many queries on it?

How transferable is the data format for SQLite? Does it work with MySQL and PostgreSQL?

ShanZhengYang
  • 16,511
  • 49
  • 132
  • 234

1 Answers1

1

An SQLite database file is a simple file you can connect to it from several instances.

Accessing it from MySQL or PostgreSQL directly is not possible.

But you can surely find scripts that will import the data from one to another

Tzook Bar Noy
  • 11,337
  • 14
  • 51
  • 82