18 años ayudando a las empresas mexicanas
a elegir el mejor software

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

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.

SQLite: The best Database ever
Comentarios: It is an excellent database as compared to others. I do not see any database competing with SQLite
Puntos a favor:
SQLite operates with lightning speed. It is the compressed version the MYSQL. It is extremely efficient in website management and many other managerial tasks in any organization.
Contras:
It is very complex for beginners, but easy to understand.
The best database management
Comentarios: I've been using SQLite to store databases and manage them easily. It's a fast and light tool, which helped me in several different cases.
Puntos a favor:
It's light (doesn't require much resources), fast, it's stable, cross-platform. It's a free and open-source software which helps a lot with saving money and making sure it's secure.
Contras:
It's not recommended for big databases, only for small ones.
A useful, yet untidy tool
Comentarios: quick to deploy and simple to implement, although certain users may want to be aware of some UI and security concerns.
Puntos a favor:
Very simple to use and undoubtedly reduces the amount of physical memory used
Contras:
Some security issues and occasionally non-loading user interface parts make me doubt its reliability
Alternativas consideradas:
Power in the simplicity
Comentarios: Works very well in simple scenarios! It might be a great choice for small applications that require low maintenance and easy setup
Puntos a favor:
It's very simple to use and lightweight. Typically does not require a separate server (it could run on the same server as a web application). It's quite handy that the database is contained in one file, which then can be backed up easily or transferred across machines. It's quite fast for certain uses.
Contras:
Compared to other RDBMSes, it's very simple - which means that it's lacking certain features when it comes to scalability - it performs well in simple scenarios, and in complex ones - it just won't (unless you are very lucky and it's e.g. a case when there is only a single connection).Moreover, it lacks certain security features like user management and access control.