Re: MySqlConnection class
Re: MySqlConnection class
Oh so it IS transactions? I read that exact doc but I thought those were for something else. I've never seen queries be called that before, thought they were something else.
Also where can I find error handling for the actual connection? In that doc there is none that I can see. Ex: if password is wrong, it should return an error.
Re: MySqlConnection class
pseudo code:
Code:
try
{
if password incorrect then
throw new Exception("password is incorrect");
}
catch (exception e)
{
MessageBox.Show(e.message);
}