Fournisseur +vb6
Fermé
nones
Messages postés
80
Date d'inscription
dimanche 18 novembre 2007
Statut
Membre
Dernière intervention
1 mars 2008
-
16 déc. 2007 à 11:47
phil232 Messages postés 607 Date d'inscription mardi 25 septembre 2007 Statut Membre Dernière intervention 31 janvier 2008 - 17 déc. 2007 à 17:12
phil232 Messages postés 607 Date d'inscription mardi 25 septembre 2007 Statut Membre Dernière intervention 31 janvier 2008 - 17 déc. 2007 à 17:12
A voir également:
- Fournisseur +vb6
- Vb6 - Télécharger - Divers Utilitaires
- Impossible de trouver le fournisseur. il est peut-être mal installé - Forum Programmation
- Le fournisseur 'microsoft.ace.oledb.12.0' n'est pas inscrit sur l'ordinateur local - Forum Programmation
- Fnac en attente de livraison fournisseur - Forum Consommation & Internet
- Fournisseur dns - Guide
1 réponse
phil232
Messages postés
607
Date d'inscription
mardi 25 septembre 2007
Statut
Membre
Dernière intervention
31 janvier 2008
178
17 déc. 2007 à 17:12
17 déc. 2007 à 17:12
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.