dotConnect C# MySQL: Setting charset at global level?

dotConnect C# MySQL: Setting charset at global level?

I'm using the generated great TableAdapters in C#, where I had errors with my Hungarian strings (containing á, é letters) until I added any of these before opening the connection:
  1. this.Adapter.InsertCommand.Connection.Unicode = true;
    this.Adapter.InsertCommand.Connection.Charset = "cp1250";
    this.Adapter.InsertCommand.Connection.Charset = "auto";
It works, but it's ugly to insert it into a computer-generated code, into multiple functions.
Is there a way, to set the any of the above settings application-wide, once globally, so I don't need to set it for each TableAdapter operation manually?

Also, shouldn't this charset be taken automatically from the application's default encoding by the dotConnect library, or shouldn't 'auto' be the default if that works, but the currently default empty '' Charset does not?