views:

56

answers:

2

do u need to download something for VB2005 to connect to a mySQL db? cant connect to mysql db? any suggestions?

+4  A: 

You need library for working with MySQL

MySQL Connector/NET

MicTech
A: 

Server=myServerAddress;Database=myDataBase;Uid=myUsername;Pwd=myPassword;

Great site for all sorts of connection strings...http://www.connectionstrings.com/

CodingBytes