last time i looked Elite-CoEmu contained an empty load maps void, which means you are trying to create one.
so chances are..
1. wrong table name
2. a null MySqlDataAdapter
3. a Silent Exception
the tryFill void from the CoEmu MySqlHandler.dll
Quote:
private void TryFill(MySqlCommand command)
{
using (MySqlConnection mySqlConnection = new MySqlConnection(MySqlArgument.op_Implicit(Connecti ons.Argument)))
{
mySqlConnection.Open();
MySqlDataAdapter mySqlDataAdapter = null;
if (mySqlConnection.State == 1)
{
mySqlDataAdapter = new MySqlDataAdapter(command.Command, mySqlConnection);
this._dataset = new DataSet();
try
{
mySqlDataAdapter.Fill(this._dataset, "table");
}
catch (Exception)
{
}
this._row = 0;
}
}
}
|
i'm just guessing here so one of your options here is it to extract the MySqlHandler.dll,
and use the source code, you can then break point where ever you want and follow the error.
note: if the mySqlConnection.State does not = 1 then the mysqlreader._dataset will = null and when you call the Reader.Read void from out side the .dll you'll see the same Exception Message that you posted up there