How
do I setup Microsoft Access support? |
What
databases do you support? |
What
connection can I use to connect ASP.NET and MYSQL? |
|
Q. How do I setup Microsoft Access support?
|
There are a few ways to do it.
|
Online Contol Panel:
|
You can log in to our online control panel (Plesk), go to the ODBC configuration and
add a new DSN connection.
|
Scripts:
|
dim dsn, Conn
|
dsn="DRIVER={Microsoft Access Driver (*.mdb)};DBQ=" & server.mappath("yourdatabase.mdb")
|
Set Conn = Server.CreateObject("ADODB.Connection")
|
Conn.Open dsn
|
|
Q. What databases do you support?
|
We currently support Microsoft Access, MYSQL
|
|
Q. What connection can I use to
connect ASP.net and MYSQL? |
You can use ODBC.NET connection to connect ASP.NET and MYSQL |
|