• Courses
  • Tutorials
  • Jobs
  • Practice
  • Contests
June 30, 2022 |3.0K Views
SQLite Introduction - Part 1
  Share   Like
Description
Discussion

SQLite is a self-contained, high-reliability, embedded, full-featured, public-domain, SQL database engine. It is the most used database engine in the world. It is an in-process library and its code is publicly available. 

It is free for use for any purpose, commercial or private. It is basically an embedded SQL database engine. Ordinary disk files can be easily read and write by SQLite because it does not have any separate server like SQL. 

The SQLite database file format is cross-platform so that anyone can easily copy a database between 32-bit and 64-bit systems. Due to all these features, it is a popular choice as an Application File Format.

SQLite Introduction - Part 1 : https://www.geeksforgeeks.org/introduction-to-sqlite/