What does it mean when a tutorial says to "add a reference to MySql.Data" or other name? I can't seem to find info on it. I'm not using VC# I'm just using csc.exe, is it a parameter I have to pass?
Originally posted by: RedSquirrel
Thanks, I got it working. Had to do /reference:MySql.Data.dll and add using MySql.Data.MySqlClient to proper files.
I'm using csc.exe since it's way faster to double click a batch file to run a compile then to have a separate program open. I do everything in notepad++.
Originally posted by: GodlessAstronomer
If you're programming C# in Notepad++ you're missing out on A LOT of what makes Microsoft's languages and framework really shine. I would strongly suggest using Visual Studio (Express Editions are free). Despite what some old timers will tell you, you're not cheating by using a fully-featured IDE. You're taking advantage of the thousands of hours of work already done by other developers.
