SQLite is a public-domain software package that provides RDBMS(Relational Database Management System)
Relational database systems are used to store user-defined records in large tables.
Features of SQLite.
Serverless.
SQLite is a serverless does not require a separate server process or system to operate.The SQLite library accesses its storage files directly.Normally, an RDBMS such as MySQL, PostgreSQL, etc., requires a separate server process to operate. The applications that want to access the database server use TCP/IP protocol to send and receive requests. This is called client/server architecture.
Zero Configuration
No server means no setup. Creating an SQLite database instance is as easy as opening a file.Because of the serverless architecture, you don’t need to “install” SQLite before using it. There is no server process that needs to be configured, started, and stopped.
Cross-Platform
The entire database instance resides in a single cross-platform file, requiring no administration.
Self-Contained
A single library contains the entire database system, which integrates directly into a host application.SQLite is developed using ANSI-C. The source code is available as a big sqlite3.c and its header file sqlite3.h. If you want to develop an application that uses SQLite, you just need to drop these files into your project and compile it with your code.
Small Runtime Footprint
The default build is less than a megabyte of code and requires only a few megabytes of memory. With some adjustments, both the library size and memory use can be significantly reduced.
Transactional
SQLite transactions are fully ACID-compliant, allowing safe access from multiple processes or threads.All transactions in SQLite are fully ACID-compliant. It means all queries and changes are Atomic, Consistent, Isolated, and Durable.
Highly Reliable
The SQLite development team takes code testing and verification very seriously.
SQLite package the entire database into a single file.That single file contains the database layout as well as the actual data held in all the different tables and indexes and this file format is cross-platfrom and can be accessed on any machine, regardless of native order or word size.
All SQLite source written in C.
SQLite database files support the UTF-8, UTF-16LE and UTF16BE encoding.
Discover more from mycodetips
Subscribe to get the latest posts sent to your email.