About 200,000 results
Open links in new tab
  1. Opening database file from within SQLite command-line shell

    Jan 30, 2012 · sqlite3 data.db I cannot figure out how to open a database file from within the tool after having invoked it without supplying the file as a command-line argument (if I, say, double …

  2. How to properly view a .sqlite file using sqlite? - Ask Ubuntu

    sqlitebrowser In the main window you can click Open database to open your *.sqlite file. It will then display something like this (here displaying the database of a Firefox add-on for applying …

  3. What are the .db-shm and .db-wal extensions in Sqlite databases?

    The contents of the WAL are periodically moved to the DB file but this is not guaranteed to occur each time the process exits. Thus when WAL is enabled each SQLite DB consists of two files …

  4. libreoffice - How can I open .db files? - Ask Ubuntu

    14 From the output of the 'file' command in the comment above I can see that it's an sqlite3 database so all you have to do is open it with the sqlite3 command and export it to CSV. Run …

  5. Opening and viewing the content of a .sqlite file [closed]

    How can I open and see the records, tables, etc in a .sqlite execution file which has been added to in an iPhone application? Are there any tutorials for doing this?

  6. Can I view Firefox history with the terminal? - Ask Ubuntu

    Download history: The downloads.sqlite file remembers what you have downloaded. ... As you can see, all three histories are not simple text files but database files in sqlite format. One way …

  7. How do I unlock an SQLite database? - Stack Overflow

    When I enter sqlite> DELETE FROM mails WHERE ('id' = 71); SQLite returns: SQL error: database is locked How do I unlock the database so this query will work?

  8. How do I set SQLite data browser as the default application for ...

    When I try to open a .sqlite3 file, I get the following error: There is no application installed for SQLite3 database files When trying to select a default application, the SQLite database …

  9. How to import .sql files into SQLite3? - Stack Overflow

    I got impatient building from a 40+Mb .sql file, terminated sqlite3 database.sqlite3 < db.sql in favor of sqlite> .read db.sql. The alternative is just as slow, it turns out.

  10. text - How to open and read SQLite files - Ask Ubuntu

    Apr 18, 2018 · 1 SQLite is a type of relational database, so that file will contain tables, columns and indexes. sqlitebrowser is a GUI based application that lets you browse inside SQLite files. …