About 50 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. Can I read and write to a SQLite database concurrently from multiple ...

    I collected information from various sources, mostly from sqlite.org, and put them together: First, by default, multiple processes can have the same SQLite database open at the same time, and several …

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

    Jan 31, 2017 · 170 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 The …

  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 Relational Mapping) and …

  5. How to backup sqlite database? - Stack Overflow

    Sep 4, 2014 · 5 For streaming replication of SQLite, check out Litestream. Compared to using the sqlite3-backup command, this is automatic, and incremental. If you need to restore from backup, the …

  6. Importing a CSV file into a sqlite3 database table using Python

    May 22, 2010 · I have a CSV file and I want to bulk-import this file into my sqlite3 database using Python. the command is ".import .....". but it seems that it cannot work like this.

  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. However , we can …

  8. file - SQLite3 database or disk is full / the database disk image is ...

    Mar 11, 2011 · You should not use traditional backup tools for SQLite (or any other database, for that matter), since they do not take into account the DB state information that is critical to ensure an …

  9. database - Exporting from SQLite to SQL Server - Stack Overflow

    Oct 2, 2008 · Is there a tool to migrate an SQLite database to SQL Server (both the structure and data)?

  10. sqlite - How to find database file version? - Stack Overflow

    Mar 10, 2012 · I have a few SQLite database files. I want to know the database file version (if the database was created with sqlite2 or sqlite3 or any other main/sub version) not the SQLite library or …