You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hai, this is my first time using this library.
and I have a problem, when I exported some tables I got an error **Setting this creates the generated columns problem**.
This is my code :
string` file = "backup.sql";
using (MySqlConnection conn = new MySqlConnection(ConnectionString))
{
using (MySqlCommand cmd = new MySqlCommand())
{
using (MySqlBackup mb = new MySqlBackup(cmd))
{
cmd.Connection = conn;
conn.Open();
mb.ExportInfo.TablesToBeExportedList = new List<string> { "table1","table2" };
mb.ExportToFile(file);
result = true;
}
}
}
Thank you for your help.
The text was updated successfully, but these errors were encountered:
Hai, this is my first time using this library.
and I have a problem, when I exported some tables I got an error
**Setting this creates the generated columns problem**
.This is my code :
Thank you for your help.
The text was updated successfully, but these errors were encountered: