A voir également:
- Fournisseur +vb6
- Vb6 - Télécharger - Divers Utilitaires
- Le fournisseur 'microsoft.ace.oledb.12.0' n'est pas inscrit sur l'ordinateur local - Forum Access
- Fournisseur iptv - Guide
- Le fournisseur microsoft.ace.oledb.12.0 n'est pas inscrit sur l'ordinateur local ✓ - Forum Framework .NET
- Meilleur fournisseur iptv ✓ - Forum TNT / Satellite / Réception
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.