ID:141820
 
Using Alathon's SimpleMySQL library, I put in my mySQL data into the prototype and wrote this little test case.

Code:
mob/verb/connect()
var/mysql_connection/ffl_connection/fc = new
world << fc.dbcon.Connect(fc.DBI(), fc.DBUser(), fc.DBPass())
world << fc.dbcon.ErrorMsg()


Problem description:

The error messages I receive here are just weird. (I hit the verb twice)

0
Das angegebene Modul wurde nicht gefunden.

0
Der Vorgang wurde erfolgreich beendet.


The 0 obviously means that the connection failed. The error message is in German, due to my system being German and roughly translates to "Module not found" and "Process succesfully finished". If this is due to me not having the right .dll's, please tell me where I can get them, I actually already installed mySQL with xampp.
Oh, nevermind, I just figured XAMPP didn't install itself globally, so I had to move libmysql.dll to my system32 folder. Now it throws a useful error message, yay!