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

  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 to import .sql files into SQLite3? - Stack Overflow

    103 Use sqlite3 database.sqlite3 < db.sql. You'll need to make sure that your files contain valid SQL for SQLite.

  4. Newest 'sqlite' Questions - Stack Overflow

    Nov 22, 2025 · The core of my app is an SQLite database containing over 16,000 strings. My goal is to translate them into multiple languages in the most performant, memory-efficient, and maintainable …

  5. 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 from one database …

  6. svn cleanup: sqlite: database disk image is malformed

    Dec 3, 2012 · I was trying to do a svn cleanup because I can't commit the changes in my working copy, and I got the following error: sqllite: database disk image is malformed What can I do right now?

  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 database.

  8. String storage size in sqlite - Stack Overflow

    Jul 22, 2013 · In SQL Server a 255-character string datatype is defined like: varchar(255). In SQL Server Compact it is defined like: nvarchar(255). However, in Sqlite, it appears that the column datatype can …

  9. How do I use regex in a SQLite query? - Stack Overflow

    11 For those who think that SQLite itself provide the function REGEXP, one basic requirement to invoke the function REGEXP in SQLite is: "You should create your own function in the application and then …

  10. 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-click …