SQLite (/ˌɛskjuːɛlˈlaɪt/[3] or /ˈsiːkwəl.laɪt/[4]) is a relational database management system contained in a C programming library. In contrast to other database management systems, SQLite is not a client–server database engine. Rather, it is embedded into the end program.
SQLite is ACID-compliant and implements most of the SQL standard, using a dynamically and weakly typed SQL syntax that does not guarantee the domain integrity.[5]
SQLite is a popular choice as embedded database software for local/client storage in application software such as web browsers. It is arguably the most widely deployed database engine, as it is used today by several widespread browsers, operating systems, and embedded systems, among others.[6] SQLite has bindings to many programming languages.
The source code for SQLite is in the public domain.[2][7]
Contents [hide]
1 Design
2 History
3 Features
4 Development and distribution
5 Adoption
5.1 Programming languages
5.2 Middleware
5.3 Web browsers
5.4 Web application frameworks
5.5 Various
5.6 Operating systems
6 Ports
7 See also
8 Citations
9 References
10 External links
Design[edit]
Unlike client–server database management systems, the SQLite engine has no standalone processes with which the application program communicates. Instead, the SQLite library is linked in and thus becomes an integral part of the application program. (In this, SQLite follows the precedent of Informix SE of c. 1984[8]) The library can also be called dynamically. The application program uses SQLite's functionality through simple function calls, which reduce latency in database access: function calls within a single process are more efficient than inter-process communication. SQLite stores the entire database (definitions, tables, indices, and the data itself) as a single cross-platform file on a host machine. It implements this simple design by locking the entire database file during writing. SQLite read operations can be multitasked, though writes can only be performed sequentially.
SQLite uses PostgreSQL as a reference platform. “What would PostgreSQL do” is used to make sense of the SQL standard.[9][10][11] One major deviation is that, with the exception of primary keys, SQLite does not enforce type checking; the type of a value is dynamic and not strictly constrained by the schema (although the schema will trigger a conversion when storing, if such a conversion is potentially reversible).
History[edit]
D. Richard Hipp designed SQLite in the spring of 2000 while working for General Dynamics on contract with the United States Navy.[12] Hipp was designing software used aboard guided missile destroyers, which were originally based on HP-UX with an IBM Informix database back-end. The design goals of SQLite were to allow the program to be operated without installing a database management system or requiring a database administrator. Hipp based the syntax and semantics on PostgreSQL 6.5 documentation. In August 2000, version 1.0 of SQLite was released, with storage based on gdbm (GNU Database Manager). SQLite 2.0 replaced gdbm with a custom B-tree implementation, adding transaction capability. SQLite 3.0, partially funded by America Online, added internationalization, manifest typing, and other major improvements.
In 2011 Hipp announced his plans to add an UnQL interface to SQLite databases and to develop UnQLite, an embeddable document-oriented database.[13]
Features[edit]
SQLite implements most of the SQL-92 standard for SQL but it lacks some features. For example it partially provides triggers, and it can't write to views (however it provides INSTEAD OF triggers that provide this functionality). While it provides complex queries, it still has limited ALTER TABLE function, as it can't modify or delete columns.[14]
SQLite uses an unusual type system for an SQL-compatible DBMS; instead of assigning a type to a column as in most SQL database systems, types are assigned to individual values; in language terms it is dynamically typed. Moreover, it is weakly typed in some of the same ways that Perl is: one can insert a string into an integer column (although SQLite will try to convert the string to an integer first, if the column's preferred type is integer). This adds flexibility to columns, especially when bound to a dynamically typed scripting language. However, the technique is not portable to other SQL products. A common criticism is that SQLite's type system lacks the data integrity mechanism provided by statically typed columns in other products. The SQLite web site describes a "strict affinity" mode, but this feature has not yet been added.[15] However, it can be implemented with constraints like CHECK(typeof(x)='integer').[12]
Several computer processes or threads may access the same database concurrently. Several read accesses can be satisfied in parallel. A write access can only be satisfied if no other accesses are currently being serviced. Otherwise, the write access fails with an error code (or can automatically be retried until a configurable timeout expires). This concurrent access situation would change when dealing with temporary tables. This restriction is relaxed in version 3.7 when write-ahead logging (WAL) is turned on enabling concurrent reads and writes.[16]
As of version 3.8.2 it is possible to create tables without rowid.[17]
SQLite full Unicode function is optional.[18]
Development and distribution[edit]
SQLite development stores revisions of its source code in Fossil, a distributed version control system that is itself built upon an SQLite database.[19]
A standalone command-line program is provided in SQLite's distribution that can be used to create a database, define tables within it, insert and change rows, run queries and manage an SQLite database file. This program is a single executable file on the host machine. It also serves as an example for writing applications that use the SQLite library.
SQLite has automated regression testing prior to each release.[20] Over 2 million tests are run as part of a release's verification. Starting with the August 10, 2009 release of SQLite 3.6.17, SQLite releases have 100% branch test coverage, one of the components of code coverage. The tests and test harnesses are proprietary.
SQLite ( / ˌɛ skju ːɛผมˈลาɪ T / [ 3 ] หรือ / ˈศรีːกิโลวัตต์เพลงชาติ l.la ɪ T / [ 4 ] ) เป็นฐานข้อมูลเชิงสัมพันธ์ระบบการจัดการที่มีอยู่ในโปรแกรมห้องสมุด ในทางตรงกันข้ามกับระบบการจัดการฐานข้อมูลอื่น ๆ , SQLite ไม่ได้–ไคลเอ็นต์เซิร์ฟเวอร์ฐานข้อมูลเครื่องยนต์ แต่มันถูกฝังลงในโปรแกรมจบ
SQLite เป็นกรดและสอดคล้องกับการใช้ส่วนใหญ่ของ SQL มาตรฐานใช้แบบไดนามิกและป้อแป้พิมพ์ SQL ไวยากรณ์ที่ไม่รับประกันโดเมนที่สมบูรณ์ . [ 5 ]
SQLite เป็นทางเลือกที่เป็นที่นิยมเป็นฐานข้อมูลแบบฝังตัวซอฟต์แวร์ท้องถิ่น / ลูกค้ากระเป๋าในโปรแกรมซอฟต์แวร์เช่นเว็บเบราว์เซอร์ มันเป็น arguably ที่ใช้กันอย่างกว้างขวางมากที่สุดเครื่องมือฐานข้อมูล เป็นใช้อย่างกว้างขวางโดยวันนี้หลายเบราว์เซอร์ ระบบปฏิบัติการ และระบบสมองกลฝังตัว , หมู่คนอื่น ๆ[ 6 ] SQLite มีผูกภาษาโปรแกรมหลาย .
รหัสที่มาสำหรับ SQLite เป็นสาธารณสมบัติ [ 2 ] [ 7 ]
เนื้อหา [ ซ่อน ]
1
2
3 คุณสมบัติประวัติศาสตร์การออกแบบการพัฒนาและการกระจาย
4
5 ยอมรับ 5.1 การเขียนโปรแกรมภาษา
5.3 5.2 ( เว็บเบราว์เซอร์ โปรแกรมเว็บกรอบ
5.4 5.5 ต่างๆ
5.6 ระบบปฏิบัติการ
6 พอร์ต
7
8
9 ดูการอ้างอิงการอ้างอิงการเชื่อมโยงภายนอก
10การออกแบบ [ แก้ไข ]
แตกต่างจากลูกค้าและเซิร์ฟเวอร์ระบบการจัดการฐานข้อมูล SQLite เครื่องยนต์ไม่มีกระบวนการแบบสแตนด์อโลนซึ่งโปรแกรมสื่อสาร . แทน , SQLite ห้องสมุดเชื่อมโยงและจึงกลายเป็นส่วนหนึ่งของโปรแกรมประยุกต์ ( ในเรื่องนี้ SQLite ตามแบบอย่างของ Informix เซของ C . 1984 [ 8 ] ) ห้องสมุดยังสามารถเรียกแบบไดนามิกโปรแกรมที่ใช้เรียกฟังก์ชันการทำงานผ่านของ SQLite ง่ายซึ่งช่วยลดความล่าช้าในการเข้าถึงฐานข้อมูล : เรียกฟังก์ชันภายในขั้นตอนเดียวที่มีประสิทธิภาพกว่า อินเตอร์ กระบวนการสื่อสาร ร้านค้า SQLite ฐานข้อมูลทั้งหมด ( ความหมาย , ตาราง , ดัชนี , ข้อมูลตัวเอง ) เป็นไฟล์ข้ามแพลตฟอร์มเดียวบนโฮสต์เครื่องมันใช้ง่ายในการออกแบบนี้ด้วยการล็อคแฟ้มฐานข้อมูลทั้งหมดในการเขียน สามารถอ่านการดำเนินงานสามารถ multitasked แม้ว่าเขียนสามารถแสดงความสามารถ
ใช้ PostgreSQL SQLite เป็นอ้างอิงแพลตฟอร์ม " อะไร จะใช้ PostgreSQL แล้ว " ให้ความรู้สึกของมาตรฐาน SQL [ 9 ] [ 10 ] [ 11 ] หนึ่งหลักเป็นส่วนที่มีข้อยกเว้นของคีย์หลักSQLite ไม่ได้บังคับใช้การตรวจสอบชนิด ชนิดของค่าเป็นแบบไดนามิกและไม่ จำกัด อย่างเคร่งครัดโดยสคีมา ( Schema แปลงแม้ว่าจะเรียกเมื่อเก็บ ถ้าเช่นการแปลงอาจย้อนกลับได้ )
ประวัติศาสตร์ [ แก้ไข ]
d . ริชาร์ด Hipp SQLite การออกแบบในฤดูใบไม้ผลิของปี 2000 ในขณะที่ทำงานทั่วไปทางพลศาสตร์สัญญากับกองทัพเรือสหรัฐฯ[ 12 ] ฮิ๊ปออกแบบซอฟต์แวร์ที่ใช้ยานจรวดนำวิถีพิฆาต ซึ่งเดิมขึ้นอยู่กับธุรกิจกับ IBM Informix ฐานข้อมูล back-end . ออกแบบเป้าหมายของ SQLite เพื่ออนุญาตให้โปรแกรมสามารถทำงานได้โดยไม่ต้องติดตั้งระบบบริหารจัดการฐานข้อมูลหรือฐานข้อมูลสำหรับผู้ดูแลระบบ HIPP ตามวากยสัมพันธ์และอรรถศาสตร์ใน PostgreSQL 6.5 เอกสาร ในเดือนสิงหาคมปี 2000 รุ่น 10 ของ SQLite ถูกปล่อยตัว พร้อมกระเป๋าตาม gdbm ( ผู้จัดการฐานข้อมูล GNU ) SQLite 2.0 แทน gdbm ด้วยตัวเองล้าหลัง การเพิ่มความสามารถในการทําธุรกรรม SQLite 3.0 , ทุนสนับสนุนบางส่วนจากอเมริกา ออนไลน์ เพิ่ม website พิมพ์รายการสินค้า และการปรับปรุงสาขาอื่น ๆ .
ใน 2011 ฮิ๊ปประกาศแผนการของเขาเพื่อเพิ่ม unql ส่วนติดต่อกับฐานข้อมูล SQLite และการพัฒนา unqlite ,
การแปล กรุณารอสักครู่..