About 3,610,000 results
Open links in new tab
  1. 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?

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

    On a mac, open terminal and run these commands on your corrupt database. (these are sqlite3 commands, so you should be able to use other sqlite3 editors or similar commands in other …

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

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

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

  6. How to backup sqlite database? - Stack Overflow

    Sep 4, 2014 · sqlite3 my_database.sq3 and run the backup dot command with: .backup backup_file.sq3 Instead of the interactive connection to the database, you can also do the …

  7. Where is SQLite database stored on disk? - Stack Overflow

    Feb 22, 2011 · In Windows machines (Windows 2010), by default, the new SQLite database files will be stored in the same folder where Sqlite3.EXE application is stored in your machine.

  8. How to dump the data of some SQLite3 tables? - Stack Overflow

    How do I dump the data, and only the data, not the schema, of some SQLite3 tables of a database (not all the tables)? The dump should be in SQL format, as it should be easily re …

  9. is there a limit to the size of a SQLite database?

    Nov 23, 2016 · An SQLite database file is organized as pages. The size of each page is a power of 2 between 512 and SQLITE_MAX_PAGE_SIZE. The default value for …

  10. concurrency - SQLite Concurrent Access - Stack Overflow

    Oct 30, 2010 · Does SQLite3 safely handle concurrent access by multiple processes reading/writing from the same DB? Are there any platform exceptions to that?