About 4,180,000 results
Open links in new tab
  1. SQLite error 'attempt to write a readonly database' during insert?

    The problem, as it turns out, is that the PDO SQLite driver requires that if you are going to do a write operation (INSERT, UPDATE, DELETE, DROP, etc), then the folder the database …

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

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

    Aug 25, 2008 · Another way of using SQLite database in NET Framework is to use Fluent-NHibernate. [It is NET module which wraps around NHibernate (ORM module - Object …

  4. sqlite - How to recover a corrupt SQLite3 database? - Stack Overflow

    80 With Sqlite 3.29.0 a new .recover command has been introduced to the CLI: Add the ".recover" command which tries to recover as much content as possible from a corrupt database file.

  5. Can I read and write to a SQLite database concurrently from …

    I used a single SQLite database which process A read from, while process B wrote to it concurrently based on events. (In python 3.10.2 using the most up to date sqlite3 version). …

  6. Copying data from one SQLite database to another

    Feb 14, 2017 · I have 2 SQLite databases with common data but with different purposes and I wanted to avoid reinserting data, so I was wondering if it was possible to copy a whole table …

  7. sql - How can I list the tables in a SQLite database file that was ...

    In SQLite, there's a table called sqlite_master that stores metadata about the database schema, including the table names. You can query this table to retrieve the names of all tables in the …

  8. python - OperationalError: database is locked - Stack Overflow

    SQLite is meant to be a lightweight database, and thus can't support a high level of concurrency. OperationalError: database is locked errors indicate that your application is experiencing more …

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

  10. How to backup sqlite database? - Stack Overflow

    sqlite3 my_database ".backup my_database.back" you can also try .dump command, it gives you the ability to dump the entire database or tables into a text file. If TABLE specified, only dump …