Which database do you usually use with #Laravel?
A) MySQL
B) PostgreSQL
C) SQLite
D) Others
@nunomaduro can you use sqlite for big projects? and how do you draw a line where now its no longer ideal to use sqlite?
Recently I am using SQLite. Before i used most of time MariaDB and PostgreSQL.
I use Laravel Sail for development, and within it I use MariaDB most often. For clients in production, I most often see MySQL, MariaDB or SQLite :)
All of them. I used MySQL/MariaDB for my personal stuff previously, Postgres at work, and now SQLite in any new L11 apps I create to tinker around with ideas.
Mostly MySQL for personal projects but also PostgreSQL at workplace.