To have a database in phpMyAdmin you need the database in Mysql?

Asked

Viewed 234 times

1

Hello, I would like you to help me on a question, my code makes connection with my bank that is in phpMyAdmin, and in some places that I read, I verified that it is a bank manager. My question and doubt are exactly the title. It is possible to have a phpMyAdmin database without a Mysql database?

  • 1

    That answer I believe answers that. Phpmyadmin is just an interface, which connects to a database, such as Heidisql, for example. Phpmyadmin does nothing, just displays in an "easier" way for you. Phpmyadmin will NEVER have a "database", who has it is database in which it is connected.

  • How I can then connect phpMyAdmin with Mysql?

  • @Alis Voce is using what? MAMP, XAMP, EASYPHP, WAMPSERVER?

  • I am using Wampserver

1 answer

2


It is necessary to understand that Phpmyadmin is not an SQL language, but an interface for handling the SQL language (In the case of Mysql).

Mysql is something quite different, not the dashboard, but an DBMS. Mysql is the database, not Phpmyadmin.

Think of a doctor, he’s not a medicine, but he’s the means to get the medicine.

Phpmyadmin is not the database, but it is the means to get to the database.

So the answer to your question:

Cannot have Phpmyadmin without Mysql. But it is possible to have Mysql without Phpmyadmin.

  • 1

    Mysql is not a language, it is a "relational database manager system" (DBMS/RDBMS).

  • 1

    MUITOOOO.. Thank you.. Really.. Thank you

Browser other questions tagged

You are not signed in. Login or sign up in order to post.