Re: Connector/Net connection performance
Posted by: Lukasz O
Date: January 31, 2005 08:45PM

Imports MySql.Data.MySqlClient
.
.
.
Dim myConn As New MySqlConnection
Dim myConnString As String


myConnString = "server=_______;" _
& "user id=_________;" _
& "password=_________;" _
& "database=________"

myConn.ConnectionString = myConnString
myConn.Open()
.
.
.
myConn.Close()
.
.
.

Works instantenously for me.

Options: ReplyQuote


Subject
Written By
Posted
Re: Connector/Net connection performance
January 31, 2005 08:45PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.