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....
G wrote:
> 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
>
>