Région de recherche :

Date :

https://dev.mysql.com › doc › mysql-getting-started › en

Getting Started with MySQL

Learn how to install and run MySQL on different platforms, and how to connect to the server with the mysql client. Find out how to perform some basic operations with MySQL, such as creating databases, tables, and users.

https://dev.mysql.com › doc › refman › 8.0 › en › connecting.html

6.2.4 Connecting to the MySQL Server Using Command Options

Learn how to use command-line options to specify the host name, user name, password, database, and protocol for connecting to the MySQL server. See examples for localhost, remote servers, and different transport protocols.

https://www.phpmyadmin.net

phpMyAdmin

phpMyAdmin is a free software that allows you to manage MySQL and MariaDB databases over the web. You can perform various operations, execute SQL statements, import and export data, and more.

phpMyAdmin

https://www.mysqltutorial.net › how-to-connect-to-mysql-server

How to Connect to MySQL Server

Learn how to connect to a MySQL server or database using MySQL command-line client and MySQL Workbench. Follow the steps and screenshots to establish a connection with localhost or other hosts.

How to Connect to MySQL Server

https://www.pierre-giraud.com › php-mysql-apprendre-coder-cours › connexion-base-donnee...

Se connecter à une base de données MySQL en PHP

Pour pouvoir manipuler nos bases de données MySQL en PHP (sans passer par phpMyAdmin), nous allons déjà devoir nous connecter à MySQL. Pour cela, le PHP met à notre disposition deux API (Application Programming Interface) : L’extension MySQLi ; L’extension PDO (PHP Data Objects).

Se connecter à une base de données MySQL en PHP

https://stackoverflow.com › questions › 5131931

How to connect to MySQL from the command line - Stack Overflow

Connecting from the mysql shell First thing is to ensure you are in sql mode, use: \sql to switch to sql mode from JS or Python mode. To connect to mysql server, use: \connect username@hostname e.g. \connect root@localhost

https://www.hostinger.fr › tutoriels › connecter-php-base-donnees-mysql

Comment se Connecter à une Base de Données MySQL en PHP - Hostinger

Hostinger utilise « localhost » comme nom d’hôte de son serveur MySQL. En général, c’est le nom que vous voudrez utiliser si vous téléchargez votre script PHP sur le même serveur que la base de données.

Comment se Connecter à une Base de Données MySQL en PHP - Hostinger

https://dev.mysql.com › doc › refman › 8.0 › en › connecting-disconnecting.html

5.1 Connecting to and Disconnecting from the Server - MySQL

Learn how to connect to the MySQL server using mysql command with various options, such as host, user, password, and socket. See how to disconnect from the server and troubleshoot common errors.

https://www.mysqltutorial.org › getting-started-with-mysql › connect-to-mysql-server

Connect to MySQL Server

In this tutorial, you will learn how to connect to MySQL Server using the mysql command-line client program and MySQL Workbench.

Connect to MySQL Server

https://www.php.net › manual › fr › function.mysql-connect

PHP: mysql_connect - Manual

Toutes les fois que vous spécifiez "localhost" ou "localhost:port" en tant que serveur, le bibliothèque client MySQL surchargera cela et essaiera de se connecter à un socket local (nommé pipe sous Windows). Si vous souhaitez utiliser TCP/IP, utilisez "127.0.0.1" au lieu de "localhost".