1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
//Code du projet : Initialisation
User, Password, Host, Database sont des chaînes
User = "Us_name"
Password = "123123"
Host = "localhost"
Database = "db_the_one"
HDécritConnexion("Conn_the_one",User,Password,Host,Database,hAccèsNatifMySQL)
SI PAS HOuvreConnexion("Conn_the_one") ALORS
Erreur("Impossible de se connecter à la base de données. Veuillez vérifier vos paramètres de connexion.",HErreurInfo())
RETOUR
FIN
HChangeConnexion("*","Conn_the_one")
HFermeConnexion("Conn_the_one") |
Partager