MySQL : Exception loading assembly I18N

Hello everyone,

I come to you because I have a problem with my class Database which goal is to have a class which communicate with my database.

The problem is that any request works despite my methods has sync.

Some screens :

Does someone can help me ?

This is not an issue with FiveM… moved to: #development:scripts

Still the same problem, sql queries work but this message appears

Still the same problem, sql queries work but this message appears

Its the same for MySQL-Async resource but i think he got around it by keeping the connection open at all times?

Do not use System in your mods, because it will cause an Error with the I18N. Sense I18N is directly connected with your Windows Command Line Window.

Essentially, you’re unable to do:

Console.ForeColorBackground = ConsoleColor.Blue;
Console.WriteLine("Blah blah blah");
Console.ResetColor();

You need to use the CitizenFX’s Debug Class:

Debug.WriteLine("Blah Blah");

Which limits you from using the Console Color still.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.