when I change a table and fields to utf16,I cann't get data by MySqlDataAdapter.
I test in default sample: Connector NET 6.6.5\Samples\Table Editor\cs,it's same question.
this is samples code:
data = new DataTable();
da = new MySqlDataAdapter("SELECT * FROM " + tables.SelectedItem.ToString(), conn);
cb = new MySqlCommandBuilder(da);
da.Fill(data); //error:long time no response
test database:sakila
Mysql version:5.6.11
anyone help me!
I test in default sample: Connector NET 6.6.5\Samples\Table Editor\cs,it's same question.
this is samples code:
data = new DataTable();
da = new MySqlDataAdapter("SELECT * FROM " + tables.SelectedItem.ToString(), conn);
cb = new MySqlCommandBuilder(da);
da.Fill(data); //error:long time no response
test database:sakila
Mysql version:5.6.11
anyone help me!