Fournisseur +vb6
nones
Messages postés
80
Date d'inscription
Statut
Membre
-
phil232 Messages postés 610 Statut Membre -
phil232 Messages postés 610 Statut Membre -
Bonjour,
je veut savoir le fournisseur qu'il faut utiliser dans une application vb6 pour se connecter à une base mysql.
qq peut m'aider????????????
je veut savoir le fournisseur qu'il faut utiliser dans une application vb6 pour se connecter à une base mysql.
qq peut m'aider????????????
Configuration: Windows XP Firefox 2.0.0.8
A voir également:
- Fournisseur +vb6
- Vb6 - Télécharger - Divers Utilitaires
- Meilleur fournisseur iptv ✓ - <a href="https://forums.commentcamarche.net/forum/consommation-internet-301">Forum Consommation & Internet</a>
- Prestashop fournisseur - <a href="https://forums.commentcamarche.net/forum/creer-un-site-159">Forum Créer un site</a>
- Fnac en attente de livraison fournisseur - <a href="https://forums.commentcamarche.net/forum/consommation-internet-301">Forum Consommation & Internet</a>
- Commande en attente d'acceptation ✓ - <a href="https://forums.commentcamarche.net/forum/consommation-internet-301">Forum Consommation & Internet</a>
1 réponse
http://databases.aspfaq.com/database/what-should-my-connection-string-look-like.html
MySQL
MySQL.com used to have a download available for an OLEDB provider to MySQL (MyOLEDB):
<%
cst = "Provider=MySQLProv;" & _
"Data Source=<x.x.x.x>;" & _
"Database=<dbname>;" & _
"User Id=<uid>;" & _
"Password=<pwd>"
%>
However, it has gone missing in recent months. If you don't have the OLEDB provider, you will need to use ODBC. You can try these connection strings (depending on whether you have MySQL ODBC or MyODBC drivers installed):
<%
cst = "Driver={MySQL};" & _
"Server=<x.x.x.x>;" & _
"Database=<dbname>;" & _
"Uid=<uid>;" & _
"Pwd=<pwd>"
cst = "Driver={MySQL ODBC 3.51 Driver};" & _
"Server=<x.x.x.x>;" & _
"Database=<dbname>;" & _
"Uid=<uid>;" & _
"Pwd=<pwd>;"
%>
You can download Windows MyODBC drivers here.
MySQL
MySQL.com used to have a download available for an OLEDB provider to MySQL (MyOLEDB):
<%
cst = "Provider=MySQLProv;" & _
"Data Source=<x.x.x.x>;" & _
"Database=<dbname>;" & _
"User Id=<uid>;" & _
"Password=<pwd>"
%>
However, it has gone missing in recent months. If you don't have the OLEDB provider, you will need to use ODBC. You can try these connection strings (depending on whether you have MySQL ODBC or MyODBC drivers installed):
<%
cst = "Driver={MySQL};" & _
"Server=<x.x.x.x>;" & _
"Database=<dbname>;" & _
"Uid=<uid>;" & _
"Pwd=<pwd>"
cst = "Driver={MySQL ODBC 3.51 Driver};" & _
"Server=<x.x.x.x>;" & _
"Database=<dbname>;" & _
"Uid=<uid>;" & _
"Pwd=<pwd>;"
%>
You can download Windows MyODBC drivers here.