Why Use SQLite?
為什么使用SQLite?
There are many reasons for choosing SQLite, including 選擇SQLite有許多理由,包括:
-
Performance SQLite performs database operations efficiently and is faster than other free databases such as MySQL and PostgreSQL.
-
性能 SQLite在執(zhí)行數(shù)據(jù)庫操作的時候要比諸如MySQL和
PostgreSQL等自由數(shù)據(jù)庫高效和快速。
-
Size SQLite has a small memory footprint and only a single library is required to access databases, making it ideal for embedded database applications.
-
大小 SQLite有很小的需要很少的內(nèi)存,并且訪問數(shù)據(jù)庫只需要一個單獨的庫文件,這些使它成為嵌入式數(shù)據(jù)庫應用的理想選擇。
-
Portability SQLite runs on many platforms and its databases can be ported easily with no client/server setup or ongoing administration required.
-
可移植性 SQLite可以在很多平臺上運行,并且他的數(shù)據(jù)庫可以在沒有客戶端/服務器設置 和管理不間斷的情況下進行移植。
-
Stability SQLite is ACID-compliant, meeting all four criteria Atomicity, Consistency, Isolation, and Durability.
-
穩(wěn)定性 SQLite遵從不可分割性原則,符合所有的四個標準原子性,一致性,隔離性,和耐久性。
-
SQL support SQLite implements a large subset of the ANSI-92 SQL standard, including views, subqueries, and triggers.
-
SQL? SQLite支持ANSI-92 SQL標準的一個大的子集工具,包括視圖,子查詢和觸發(fā)器。
-
Interfaces SQLite has language APIs for C/C++, PHP, Perl, Python, Tcl, and many more beyond those covered in this book.
-
接口 SQLite有 C/C++, PHP, Perl, Python, Tcl和更多的在本書之外的語言。
-
Cost SQLite is in the public domain and therefore is free to use for any purpose without cost and can be freely redistributed.
-
費用 SQLite 是公開的,因此可以任意的自由使用它而不需要付費,并且可以自由的重新發(fā)布。
|
???????????????????????????????????????????? 摘自《SQLite》
Chris?Newman著