SQLite's Built-in printf()
(printf.html)
1. Overview
SQLite contains its own implementation of the string formatting routine "printf()",
accessible via the following interfaces:
format() → an SQL function returning the formatted string
sqlite3_mprintf() → Store the formatted string in memory obtained
sqlite3_malloc64().
sqlite3_snprintf() → Store the formatted ...
|
SQLite Changes From Version 3.4.2 To 3.5.0
(34to35.html)
Moving From SQLite 3.4.2 to 3.5.0
SQLite version 3.5.0 (2007-09-04) introduces a new OS interface layer that
is incompatible with all prior versions of SQLite. In addition,
a few existing interfaces have ...
|
Command Line Shell For SQLite
(cli.html)
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 ...
|
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 ...
|
C/C++ Interface For SQLite Version 3 (old)
(capi3.html)
... 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?
(affcase1.html)
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 ...
|
Temporary Files Used By SQLite
(tempfiles.html)
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 ...
|
Page generated by FTS5 in about 833.29 ms.