|
| 3.1 |
: |
What must I write to get into connection with my MySQL database? |
|
|
To get in contact with your MySQL database, you must make a "connection string". Below is an example of how it can look in a VB script (ASP):
Const STRCONNMYSQL = "DRIVER={MySQL ODBC 3.51 Driver};"
& _
"SERVER=mysql01.nhl-data.dk;" & _
"DATABASE=testdb;" & _
"UID=username;"
& _
"PASSWORD=password;" & _
"OPTION=16384;"
|
 |
| 3.2 |
: |
MySQL and
ASP.NET |
|
|
We have now made it possible to use a clean "managed data provider" to connect to your MySQL database. This is both faster and easier than using the ODBC driver.
Please contact us for more information, should you wish to use this method. |