MySQL Problem

lanners

New Member
Messages
7
Reaction score
0
Points
0
Hi I'm attempting to use mysql which is working fine on my machine but when I upload the asp.net webpage I'm getting an error

: The type or namespace name `MySql' could not be found. Are you missing a using directive or an assembly reference?

because I've not uploaded the mysql dlls. Where do they need to go in the website or is there something else I should be calling?

Thanks

Lanners
 

begamer26

New Member
Messages
24
Reaction score
0
Points
0
Hi I'm attempting to use mysql which is working fine on my machine but when I upload the asp.net webpage I'm getting an error

: The type or namespace name `MySql' could not be found. Are you missing a using directive or an assembly reference?

because I've not uploaded the mysql dlls. Where do they need to go in the website or is there something else I should be calling?

Thanks

Lanners

Have you changed your details in the script eg. in php to connect to it -
Code:
mysql_connect('HOST','USERNAME','PASSWORD');
 
Top