What is SQLite and where is it used?

devquora
devquora

Posted On: Feb 22, 2018

 

The SQLite is mostly ACID (Atomicity, Consistency, Isolation, and Durability) compliant relational database management system contained in a relatively small C Programming Library.
Areas where SQLite works well:
  • Embedded devices
  • Application file format
  • Websites
  • Data Analysis
  • File archives
  • Internal or temporary database
  • Experimental SQL language extensions
  • Cache for enterprise data
  • Replacement for ad hoc disk files
  • Server-side database

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    SQLite interview questions

    Distinguish between SQLite and SQL?

    SQLite: It is a well built, embedded relational database management system that is mostly used in mobile devices for da..

    SQLite interview questions

    Mention some SQLite commands and also explain them?

    The SQLite commands interact directly with relational databases and are similar to SQL. Below are the standard SQLite c..

    SQLite interview questions

    What are SQLite Indexes and mention the instances where they are to be avoided?

    SQLite Indexes are the special lookup tables that are used by database Engines to speed up the process of retrieving da..