DISQLite3 implements a self-contained, embeddable, zero-configuration SQL database engine for Delphi (Embarcadero / CodeGear / Borland).

Features include:

  • ACID transactions, even after system crashes and power failures.
  • Zero-configuration – no setup or administration needed.
  • Implements most of SQL-92.
  • A complete database is stored in a single disk file.
  • Supports terabyte-sized databases and gigabyte-sized strings and blobs. Self-contained: no external dependencies, no DLLs.
  • Small footprint and smart linking: Only required code is compiled in, adding as little as 300 KB code space only.
  • Full Text Search (FTS) with customizable tokenizer, prefix matching, and optional word stemming for 15 languages.
  • Database AES encryption with SHA256 key generator.
  • Db.pas is not required, which allows DISQLite3 to compile with all flavours of Delphi, including Delphi Standard and Delphi Personal.
  • Faster than popular database engines for most common operations.
  • Simple, easy to use API.
  • Database files created with DISQLite3 can also be accessed by Linux and MacOS using the SQLite3 libraries.

SQL-92 Support

DISQLite3 understands most of the SQL-92 language standard:

  • ALTER TABLE
  • ANALYZE
  • ATTACH DATABASE
  • BEGIN TRANSACTION
  • Comments
  • COMMIT TRANSACTION
  • CREATE INDEX
  • CREATE TABLE
  • CREATE TRIGGER
  • CREATE VIEW
  • DELETE
  • DETACH DATABASE
  • DROP INDEX
  • DROP TABLE
  • DROP TRIGGER
  • DROP VIEW
  • END TRANSACTION
  • EXPLAIN
  • Expressions
  • INSERT
  • ON CONFLICT clause
  • PRAGMA
  • REINDEX
  • REPLACE
  • ROLLBACK TRANSACTION
  • SELECT
  • UPDATE
  • VACUUM

The complete SQL syntax is described in full length in the DISQLite3 HTML Help, part of the installation package.

Simple Programming Interface

DISQLite3 provides a comprehensive list of functions and procedures to manage database records with ease and efficiency. It includes the full SQLite3 functionality, plus a number of Delphi specific extras:

  • AnsiString, UnicodeString / WideString, and Variant support.
  • Database and Statement wrapper classes.
  • TDataSet support.
  • TStream support for BLOBs.
  • Growing number of Delphi example projects.

Despite of its rich set of features, a DISQLite3 database application can be realized with just three different function calls.

Pro and Personal Editions

DISQLite3 comes in two editions: DISQLite3 Personal and DISQLite3 Pro.

DISQLite3 Personal is free for personal, educational, and non-commercial use. It omits some functionality of DISQLite3 Pro, but does not compromize on essential features like ACIDtransactions, virtually unlimited database size, full text search, and others.

DISQLite3 Pro is required for commercial use and may be purchased online. It adds functionality usually desired by advanced users. This includes SQL triggers and views, arbitrary encryption passwords, user-defined SQL functions, and more. Since DISQLite3 Pro is fully compatible to the Personal edition, it is possible to upgrade existing projects without any code changes.

feature chart is available for a side-by-side comparison of the two editions.

This table lists the features of the free1) DISQLite3 Personal vs. the commercial DISQLite3Pro editions.

Feature DISQLite3 Personal DISQLite3 Pro
Windows 64-bit support   Yes
SQL-92 Compatible Syntax Yes Yes
Single File Database Yes Yes
Compact, Variable-Length File Format Yes Yes
Maximum Database Size 2 TB 2TB
Maximum Number of Tables Unlimited Unlimited
Maximum Number of Columns per Table Unlimited Unlimited
Maximum Length of Column Name Unlimited Unlimited
Maximum Number of Indexes Unlimited Unlimited
Maximum Amount of Data per Row Unlimited Unlimited
Compiles into Application EXE, requires no DLLs Yes Yes
Indexed Full Text Search with prefix matching (like "run*") andoptional word stemming Yes Yes
SQL Parameter Binding (?, :ParamName) Yes Yes
Database Locking Yes Yes
Database Transactions and Rollback Yes Yes
Database Schema PRAGMAs Yes Yes
Multiple, Simultaneous SELECT Operations Yes Yes
Database Encryption Single Password Any Password
CHECK constraints   Yes
SQL ANALYZE command   Yes
SQL OR optimization   Yes
SQL BETWEEN optimization   Yes
SQL LIKE optimization   Yes
SQL INSERT allows multiple rows   Yes
Default Column Values Yes Yes
Floating-Point Support Yes Yes
Date and DateTime Functions Yes Yes
User-Defined Collation Sequences   Yes
User-Defined Database Functions and Aggregates   Yes
ALTER TABLE SQL Command   Yes
Authorization Callback Feature   Yes
PRIMARY KEY Columns Yes Yes
Autoincementing PRIMARY KEY columns (may reuse ROWIDs from deleted records) Yes Yes
AUTOINCREMENT keyword (monotonically increasing ROWIDs, guaranteed to be unique over the entire database lifetime)   Yes
VACUUM Clause, Auto-Vacuum Feature   Yes
BLOB Literal SQL Syntax X'ABCD'   Yes
Incremental BLOB API   Yes
CAST ( expr AS type )   Yes
Temporary Tables   Yes
Compound SELECTs (UNION, UNION ALL, INTERSECT, EXCEPT)   Yes
ON CONFLICT SQL Clause   Yes
EXPLAIN SQL Clause   Yes
Database Integrity Check   Yes
FOREIGN KEY constraints   Yes
In-Memory Database   Yes
Hot Database Backup   Yes
Trace Callback Feature for SQL Logging and Debugging   Yes
Commit Transaction Callback Feature   Yes
Progress Callback Feature   Yes
REINDEX SQL Clause   Yes
PRAGMA Database Options   Yes
Sub-Queries, Sub-Selects, IN() Operator   Yes
Automatic Database Triggers   Yes
UTF-8 / Utf8String API Yes Yes
UTF-16 / UnicodeString / WideString API   Yes
Views, Triggers on Views   Yes
ATTACH multiple databases   Yes
SQL tracing and performance profiling   Yes
Shared Cache between multiple open DB connections   Yes
Asynchronous I/O background thread writing   Yes
R-Tree index for geospatial data systems   Yes
Write-Ahead Logging (WAL) for improved performance and concurrency   Yes
Multiple worker threads   Yes
1) Free for personal, educational, and non-commercial use. See license for details.
 

DISQLite3 - A self-contained, embeddable, zero-configuration SQL database engine for Delphi的更多相关文章

  1. How to Use Lucene.NET with Windows Azure SQL Database

    http://social.technet.microsoft.com/wiki/contents/articles/2367.how-to-use-lucene-net-with-windows-a ...

  2. Create an Azure SQL database in the Azure portal

    Create a SQL database An Azure SQL database is created with a defined set of compute and storage res ...

  3. [Windows Azure] How to Create and Configure SQL Database

    How to Create and Configure SQL Database In this topic, you'll step through logical server creation ...

  4. [Windows Azure] Getting Started with Windows Azure SQL Database

    In this tutorial you will learn the fundamentals of Windows Azure SQL Database administration using ...

  5. HTML5教程之html 5 本地数据库(Web Sql Database)

    HTML5的Web SQL Databases(html5 本地数据库)的确很诱惑人,当你发现可以用与mysql查询一样的查询语句来操作本地数据库时,你会发现这东西挺有趣的.今天,我们一起来了解HTM ...

  6. Azure SQL Database (19) Stretch Database 概览

    <Windows Azure Platform 系列文章目录>  Azure SQL Database (19) Stretch Database 概览      Azure SQL Da ...

  7. Azure SQL Database (20) 使用SQL Server 2016 Upgrade Advisor

    <Windows Azure Platform 系列文章目录>  Azure SQL Database (19) Stretch Database 概览      Azure SQL Da ...

  8. Azure SQL Database (21) 将整张表都迁移到Azure Stretch Database里

    <Windows Azure Platform 系列文章目录>  Azure SQL Database (19) Stretch Database 概览      Azure SQL Da ...

  9. Azure SQL Database (22) 迁移部分数据到Azure Stretch Database

    <Windows Azure Platform 系列文章目录>  Azure SQL Database (19) Stretch Database 概览      Azure SQL Da ...

随机推荐

  1. 利用mysql的binlog恢复数据

    MySQL Binary Log也就是常说的bin-log, ,是mysql执行改动产生的二进制日志文件,其主要作用有两个: * 数据回复 * 主从数据库.用于slave端执行增删改,保持与maste ...

  2. Python基础三(选择,循环)

    序 首先我们知道程序的执行有三种结构:顺序.选择.循环三种结构,而为了方便我们书写和多次利用我们就需要把一段代码封装器来,这就是方法.今天我就说的是程序的基本结构的格式和方法. 注:所有的程序都可以通 ...

  3. 动态RNN和静态RNN区别

    调用static_rnn实际上是生成了rnn按时间序列展开之后的图.打开tensorboard你会看到sequence_length个rnn_cell stack在一起,只不过这些cell是share ...

  4. Codeforces 931D Peculiar apple-tree(dfs+思维)

    题目链接:http://codeforces.com/contest/931/problem/D 题目大意:给你一颗树,每个节点都会长苹果,然后每一秒钟,苹果往下滚一个.两个两个会抵消苹果.问最后在根 ...

  5. gcc/g++ 命令

    gcc & g++现在是gnu中最主要和最流行的c & c++编译器 .g++是c++的命令,以.cpp为主,对于c语言后缀名一般为.c.这时候命令换做gcc即可.其实是无关紧要的.其 ...

  6. ROS + Caffe 机器人操作系统框架和深度学习框架笔记 (機器人控制與人工智能)

    ROS + Caffe,这里以环境中物体识别为示例,机器人怎么知道环境里面有什么呢? [0.0567392 - n03376595 folding chair][0.0566773 - n040999 ...

  7. SQlserver创建函数实现只取某个字段的数字部分

    create FUNCTION [dbo].[GET_NUMBER](@S VARCHAR(100)) RETURNS VARCHAR(100) AS BEGIN WHILE PATINDEX('%[ ...

  8. 34、疯狂java讲义第三版

    内容中包含 base64string 图片造成字符过多,拒绝显示

  9. day6 ConfigParser模块 yaml模块

        yaml模块: python可以处理yaml文件,yaml文件安装的方法为:$ pip3 install pyyaml    configparser模块,用来处理文件的模块,可以实现文件的增 ...

  10. Java 之 JDBC

    mysql : //****** 四大金刚: 驱动类名.url.用户名.密码 //MySQL四大金刚 String driverClassname="com.mysql.jdbc.Drive ...