
SQLite
¿Qué es SQLite?
Solución de gestión de bases de datos en una biblioteca de programación C.
¿Quién usa SQLite?
Grandes negocios.
¿Tienes dudas sobre SQLite? Compara con una alternativa popular

SQLite
Opinones de SQLite

Gustavo
Excelente base de datos de desarrollo
Comentarios: Es muy fácil de configurar y empezar nuevas aplicaciones sin tener que instalar nada más o montar un docker con postgres o mysql es muy cómodo, sobre todo para principiantes. Las funcionalidades que provee son las básicas pero en general suficientes cuando tienes que desarrollar prototipos o "aplicaciones de laboratorio" destinadas a aprender. Al guardar los datos en un fichero es muy fácil llevarlo junto con el código para tener guardada una configuración inicial para el proyecto.
Puntos a favor:
Cuando comienzas un proyecto en Ruby on Rails, sqlite viene por defecto como motor de base de datos, por lo tanto su configuración para guardar los datos en un fichero es muy sencilla y de este modo es fácil comenzar a desarrollar un nuevo proyecto. Es fácil de configurar y muy efectivo como base de datos de desarrollo.
Contras:
Al ser una base de datos basada en un fichero, su performance no es muy buena, y si debes realizar pruebas de performance te recomiendo utilizar el motor de base de datos que tengas en producción. Por otro lado, hay algunas funcionalidades como columnas array o hstore no están disponibles por lo que en ese caso no podrás utilizarla.

Stephen
Perfect database tool for embedded software
Comentarios: I work a lot with SQLite as it is the primary medium of local storage in Android devices (and by extension, Android applications) which I work with on a daily basis, and SQLite is just perfect for the purpose it serves on these devices. It's lightweight so you don't have to worry most times about how much of the user's storage space your database is going to take up. There's not much difference between the standard SQL commands and those used in SQLite, and many have reported that SQLite is a good starting and training resource for SQL in general.
Puntos a favor:
Doesn't need a separate server. Lightweight and portable. Integrates most of the commands, functions and syntax of other SQL software. Optimized for use on devices that need to store data locally. Large user base and community (support).
Contras:
All operations are locked to a single process, so it's not suitable for large scale database operations (which is not what you should be doing locally on a device anyway).

Jonathan Alexander
Alternativas consideradas:
An excellent database for mobile projects
Comentarios: I have used this database for the development of mobile application projects and for the prototyping of web pages, which makes it a very good database, easy and agile when manipulating data
Puntos a favor:
What I like most about this product or database is how easy it is to integrate with mobile projects in the creation of applications and its easy portability, as well as performance, agility and little space in its implementation that makes it unique when it comes to of mobile application projects
Contras:
That for very large projects it is not so robust handling so many transaction threads
Richard Aries
An efficent and lightweight Database Management System!
Puntos a favor:
I've been using this DBMS for a while and it is so far the best to use in this field. It is open-source and has a wide variety of platform and programming language support. It is pretty efficient in data retrieval and what I really love in using this is unlike other DBMS, it is serverless so I don't need to do any other configuration to use it other than integrating it in my system!
Contras:
There's not much to complain however given that it is designed to be a lite database, the size of the database is limited thus it can't be used on large scale data.

Chaya
SQLite - compatability at it's best level
Comentarios: SQLite has become more and more popular among the users because of its easy installation and easy accessing . As it is compatible with most of the programming languages and its light weight it is more popular among mobile application developers
Puntos a favor:
SQLite is a light weighted data base which could be embedded with any software. Due to the light weightage of the product the data base is more popular In mobile application development. With it’s light weight it is also fast. SQLite is almost 35% faster than any other file system. SQLite is easy to use and there is not special installation or configurations needed to be done in order to use the product. All user have to do is download the libraries and run them in the computer. It is compatible which is why the product can be used with many programming languages with out any issues. Users are given a chance to extend their data base in future by adding new tables or new columns to the existing tables which is a great help for the ongoing projects.
Contras:
SQLite is not a multi-user platform where the users can handle concurrent writes. There for SQLite is not good for intensive applications with rapid data logging. If the system has concurrent transactions where lot of users keep accessing the same set of data simultaneously then SQLite is not a good choice for the project. SQLite data bases are restricted to maximum of 2GB in most of the cases.