我使用DataTable/DataAdapter
架构在数据库和我的模型对象之间进行调解。我的数据库中有两个表,两个窗体中有两个dataGridView
。首先,我调用GetData
方法来填充我的第一个dataGridView
。它已成功填写。然后我更改其中的任何字段并致电UpdateTableChanges
。更改的行也会成功添加到db。然后我再次调用GetData
填充第二个dataGridView
,但不返回任何行。第二次调用GetData
期间也没有任何错误。但是当我第二次没有调用UpdateTableChanges
并调用GetData
所有行时。 UpdateTableChanges
方法后出现问题。感觉此方法更改了_adapter
中的某些数据。所有方法中的所有参数都是正确的,因为如果我不调用UpdateTableChanges
,则返回行。在适配器更新db后,我需要更改什么才能获取行?任何帮助都会很棒。我删除了try / catch块以便更好地理解。
class DBModel
{
private readonly string _connectionString;
private MySqlDataAdapter _adapter;
private MySqlConnection _connection;
public DBModel()
{
_connectionString = "SERVER = localhost; DATABASE = transportation; USER ID = root;";
_connection = new MySqlConnection(_connectionString);
_adapter = new MySqlDataAdapter(String.Empty, _connection);
}
public BindingSource GetData(string selectCommand)
{
var bindingSource = new BindingSource();
SetMySqlSelectCommand(selectCommand);
var commandBuilder = new MySqlCommandBuilder(_adapter);
var table = new DataTable();
_adapter.Fill(table);
bindingSource.DataSource = table;
return bindingSource;
}
public void UpdateTableChanges(BindingSource bindingSource, string selectCommand)
{
SetMySqlSelectCommand(selectCommand);
_adapter.Update((DataTable)bindingSource.DataSource);
}
private void SetMySqlSelectCommand(string selectCommand)
{
var mySqlCommand = _connection.CreateCommand();
mySqlCommand.CommandText = selectCommand;
_adapter.SelectCommand = mySqlCommand;
}