Small. Fast. Reliable.
Choose any three.

Search results 71..80 of 303 for: sqlite

Recent SQLite News
(news.html)
 ... 2020-01-27 - Release 3.31.1 Applications that use SQLite should only interface with SQLite through the officially published APIs. Applications should not depend upon or use the internal data structures of SQLite as those structures might change from ... 
1. Getting Started The SQLite project provides a simple command-line program named sqlite3 (or sqlite3.exe on Windows) that allows the user to manually enter and execute SQL statements against an SQLite database or against a ZIP archive. This document provides a ... 
Isolation In SQLite
(isolation.html)
Isolation In SQLite The "isolation" property of a database determines when changes made to the database by one operation become visible to other concurrent operations. Isolation Between Database Connections If the same database is being read and written using two ... 
SQLite Older News
(oldnews.html)
2015-11-02 - Release 3.9.2 SQLite version 3.9.2 is a patch release fixing two obscure bugs. (Details: (1), (2)). Upgrade only if you are having problems. 2015-10-16 - Release 3.9.1 SQLite version 3 ... 
 ... An Introduction To The SQLite C/C++ Interface SQLite C/C++ Reference Guide C/C++ Interface For SQLite Version 3 1.0 Overview SQLite version 3.0 is a new version of SQLite, derived from the SQLite 2.8.13 ... 
What If OpenDocument Used SQLite? Introduction Suppose the OpenDocument file format, and specifically the "ODP" OpenDocument Presentation format, were built around SQLite. Benefits would include: Smaller documents Faster File/Save times Faster startup times Less memory used Document versioning A ... 
1. Introduction One of the distinctive features of SQLite is that a database consists of a single disk file. This simplifies the use of SQLite since moving or backing up a database is a simple as copying a single file. It also ... 
Atomic Commit In SQLite
(atomiccommit.html)
1. Introduction An important feature of transactional databases like SQLite is "atomic commit". Atomic commit means that either all database changes within a single transaction occur or none of them occur. With atomic commit, it is as if many different writes to ... 
SQLite Unlock-Notify API
(unlock_notify.html)
 ... Otherwise, the ** system may become deadlocked. */ int sqlite3_blocking_step(sqlite3_stmt *pStmt){ int rc; while( SQLITE_LOCKED==(rc = sqlite3_step(pStmt)) ){ rc = wait_for_unlock_notify(sqlite3_db_handle(pStmt)); if( rc!=SQLITE_OK ) break; sqlite3_reset(pStmt); } return rc; } /* ** This function is a wrapper around the SQLite function sqlite3_prepare_v2(). ** It ... 
SQLite Backup API
(backup.html)
Using the SQLite Online Backup API Historically, backups (copies) of SQLite databases have been created using the following method: Establish a shared lock on the database file using the SQLite API (i.e. the shell tool). Copy the database file ... 

12345678910

Page generated by FTS5 in about 252.36 ms.