Loading...
Friday, June 22, 2012

SQLite - An embedded SQL database engine

SQLite - An embedded SQL database engine
SQLite is an open source embeddable database engine written in C. It provides all of the standard features you would normally find in any commercial SQL database product, such as SQL, transaction safety and support for binary large objects. No setup or administration required. It also offers high performance and databases up to 2TB in size, despite it's small memory footprint. SQLite is accessible through C, PHP, TCP, Ruby, Perl and Python. SQLite has long been known for being a stable and reliable product.

Features Of SQLite

Suggested Uses For SQLite:
  • Application File Format. Rather than using fopen() to write XML or some proprietary format into disk files used by your application, use an SQLite database instead. You'll avoid having to write and troubleshoot a parser, your data will be more easily accessible and cross-platform, and your updates will be transactional.
  • Database For Gadgets. SQLite is popular choice for the database engine in cellphones, PDAs, MP3 players, set-top boxes, and other electronic gadgets. SQLite has a small code footprint, makes efficient use of memory, disk space, and disk bandwidth, is highly reliable, and requires no maintenance from a Database Administrator.
  • Website Database. Because it requires no configuration and stores information in ordinary disk files, SQLite is a popular choice as the database to back small to medium-sized websites.
  • Stand-in For An Enterprise RDBMS. SQLite is often used as a surrogate for an enterprise RDBMS for demonstration purposes or for testing. SQLite is fast and requires no setup, which takes a lot of the hassle out of testing and which makes demos perky and easy to launch.

Source -
Visit website -

0 comments:

Post a Comment

 
TOP