-1
これは私のコードをデータビューからグリッドビューに表示するコードです。誰もが同じのGridViewにデータ更新を介してデータベースにデータを更新する方法を私を助けることができるC#MySql DataGrid Updater
相続人は私のコード
string myConnection = "datasource=localhost;port=3306;username=root;password=2905";
MySqlConnection myConn = new MySqlConnection(myConnection);
MySqlCommand cmdDataBase = new MySqlCommand("select * from mydb.stud_info where stud_id = '" + this.studentid_txt.Text + "'; ", myConn);
MySqlDataAdapter sda = new MySqlDataAdapter();
sda.SelectCommand = cmdDataBase;
DataTable dbdataset = new DataTable();
sda.Fill(dbdataset);
BindingSource bSource = new BindingSource();
bSource.DataSource = dbdataset;
grid1.DataSource = bSource;
sda.Update(dbdataset);
これは星の例ではありません(私は 'using'で修正する必要がありますが)これを確認してください[Here](http://stackoverflow.com/a/34175019)私が書いた – Drew
あなたのユーザーSQLインジェクション攻撃が何であるかを知る – Steve