About 161,000 results
Open links in new tab
  1. 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 …

  2. 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 …

  3. python - Why do I get "unable to open database file" while it …

    Jun 24, 2018 · Why can't I open my SQLite database? A unit test that I pass "/tmp/cer/could.db" can make the database without a problem but when I pass the actual program the same …

  4. sqlite - Open database files (.db) using python - Stack Overflow

    Jun 12, 2020 · I have a data base file .db in SQLite3 format and I was attempting to open it to look at the data inside it. Below is my attempt to code using python. import sqlite3 # Create a SQL …

  5. 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?

  6. 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?

  7. How do I connect and use an SQLite database from C#?

    Aug 25, 2008 · I think the easiest way to connect to SQLite from any .NET application is Devart.Data.SQLite Nuget package. Simple example of connection and retrieving SQLite data:

  8. sqlalchemy.exc.OperationalError: (OperationalError) unable to …

    Aug 13, 2013 · For those looking for a solution to the OperationalError, not necessarily caused by being unable to open database file None None - you might try adding a pool_pre_ping=True …

  9. How to see a SQLite database content with Visual Studio Code

    Dec 6, 2016 · I'm new to Django and try to see a SQLite3 file. I'm looking for a way to open and view a database content with visual studio code like Pycharm can do (see picture) Does an …

  10. Change SQLite database mode to read-write - Stack Overflow

    Oct 5, 2009 · How can I change an SQLite database from read-only to read-write? When I executed the update statement, I always got: SQL error: attempt to write a readonly database …