Hi Folks,
i'm looking at it, and cannot find anything wrong.
I've searched around the net but couldn't find anything (or i'm just too stupid asking Dr. Google the right Questions)
The MySQLConnect.Open throws me an error like "Cannot find "dl-error-skeleton.c"
(sorry if it's the wrong phrase, but i have german Lazarus)
Please do not answer like "Use those visual Components you have on the SQLdb-Tab", since i'm still learning the in's and out's of Pascal,
and those Components are of no use to me, if i have to code something which doesn't use an UI i can place it on
Var
MySQLConnect : TMySQL57Connection;
MySQLTrans : TSQLTransaction;
MySQLQuery : TSQLQuery;
//Somewhere in a Procedure
MySQLConnect := TMySQL57Connection.Create(nil);
MySQLTrans := TSQLTransaction.Create(MySQLConnect);
MySQLConnect.Transaction := MySQLTrans;
MySQLConnect.DatabaseName := 'mysql';
MySQLConnect.HostName:='127.0.0.1';
MySQLConnect.UserName:='root';
MySQLConnect.Password:='MySecretPassword';
MySQLConnect.Port:=3306;
Try
MySQLConnect.Open; //KABOOM