this is the one i used
server=localhost; user id=username; password=password; database=dbname; pooling=false;
a few snippits from a page (its
vb)
Code:
<%@ Page Language="VB" ContentType="text/html" ResponseEncoding="iso-8859-1" %>
<% @Import Namespace="System.Data" %>
<% @Import Namespace="MySQL.Data.MySQLClient" %>
<script runat="server">
Dim strCon As MySQLConnection = New MySqlConnection("connString")
sub bindUData()
dim strSQL as string = "select * from table"
Dim objCommand as New MySQLCommand(strSQL, strCon)
strCon.open()
Dim myAdapter as New MysqlDataAdapter(objCommand)
Dim ds as New DataSet()
myAdapter.Fill(ds)
dgUsers.DataSource = ds
dgUsers.DataBind()
strCon.close()
end sub
that should be able to get you going