Rogerio_Rios
(Professional Support)
March 8, 2021, 12:40pm
32
To create a professional app, you will need to use a database.
All quality software works with databases.
The databases are of 2 types: SQL and NoSQL. I have always used SQL databases. I have no doubts about robustness, speed, storage capacity, data integrity.
Mysql.
It is an established database. With lots of research material. It works with SQL language, which is a language with a lot of research material. So you have stability, robustness and research material. Free.
Imagine who bought it? ORACLE. The giant ORACLE.
Who use Mysql :
Use mysql / mariadb with php scripts. My first test I did with the help of @Kleyber_Derick and I used a database of more than 100,000 records. This query in the database was made with Join in 4 tables. The data appears instantly. I also send the parameters to the script and the Scripts I create works with Insert, Select, Update and Delete on the server. And as I already mentioned, Mysql / Mariadb have thousands of research sources. They also use the SQL language (DML and DDL) which is used dir…