Connecting guestbook to MySQL

G

Guest

Very bad knowledge about MySQL. Wish to use exJune ASP Guestbook v2:
http://www.exjune.com/downloads/index.asp
This is the ASP connection string to MySQL:
<%

Dim objConn
Dim objRS
Set objRS = Server.CreateObject("ADODB.Recordset")
Set objConn = Server.CreateObject("ADODB.Connection")

objConn.ConnectionString="DRIVER={MySQL};SERVER=localhost;DATABASE=
[DOMAIN_COM];UID=[DOMAIN_COM];PWD=[PASSWORD];"
objConn.Open

objRS.Open "[QUERY]", objConn, 3,3

%>


<%
objRS.Close
Set objRS = Nothing

objConn.Close
Set objConn = Nothing

%>
My webhotel is https://www.b-one.net/
Would be very grateful for help.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top