working with mysql database

G

G

Hello,

how can i work with Mysql database? do i have to download any provider or
connector etc .. ?
I am using .NET2.0

Thanks in Advance

G
 
?

.

The same way that you can connect to a SQL Server DB with System.

Check for the relevant connection string here -->
http://www.connectionstrings.com/

VB:

Imports System.Data.SQLClient 'At the top

'In your function or whatever
Dim Conn as New SQLConnection
Conn.ConnnectionString = "" 'Whatever you got from that website
Conn.Open()

etc....
 

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