Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to save in SQLite Manager?

Tags:

sqlite

I have opened a sqlite3 database file in firefox sqlite manager, made some changes to it but I can't see a way to save it?

There are various export options such as CSV, SQL and XML

I am new to this and just updating someone else's work

like image 348
jimsmith Avatar asked Nov 13 '22 17:11

jimsmith


1 Answers

It's a database. The result of data affecting queries is saved as executed in the database, such as:

  • CREATE TABLE
  • ALTER TABLE
  • DROP TABLE
  • INSERT
  • UDPATE
  • DELETE
like image 184
MPelletier Avatar answered Jun 06 '23 14:06

MPelletier