|
RT
It can be found in the breakpoint that the insertcommand has been generated, but the parameters cannot be obtained.The code is as follows:
OleDbDataAdapter jyda = new OleDbDataAdapter ();
jyda.SelectCommand = new OleDbCommand ("SELECT ID, transaction time, transaction type, transaction type, game, server, account, password, PIN, character name, payment method, transaction amount, payment status, training status, trader, Trading platform, communication software, communication software ID, telephone, task time, completion time, details FROM JYDJL ", conn);
OleDbCommandBuilder commandBuilder = new OleDbCommandBuilder (jyda);
jyda.InsertCommand = commandBuilder.GetInsertCommand ();
jyda.Fill (managerDataSet, "JYDJL");
DataRow itemrow = managerDataSet.JYDJL.NewRow ();
// DataRow itemrow = serDataSet.servicingreportinfo.NewRow ();
itemrow ["Transaction time"] = dateTimePicker1.Value;
itemrow ["Transaction Type"] = comboBox1.Text.ToString (). Trim ();
itemrow ["Transaction Kind"] = comboBox2.Text.ToString (). Trim ();
itemrow ["Game"] = comboBox3.Text.ToString (). Trim ();
itemrow ["District service"] = textBox4.Text.ToString (). Trim ();
itemrow ["Account"] = textBox5.Text.ToString (). Trim ();
itemrow ["PIN"] = textBox6.Text.ToString (). Trim ();
itemrow ["Person Name"] = textBox7.Text.ToString (). Trim ();
itemrow ["Payment Method"] = comboBox4.Text.ToString (). Trim ();
itemrow ["Transaction Amount"] = d;
itemrow ["Payment Status"] = comboBox5.Text.ToString (). Trim ();
itemrow ["generation status"] = comboBox6.Text.ToString (). Trim ();
itemrow ["Trader"] = textBox9.Text.ToString (). Trim ();
itemrow ["Trading Platform"] = comboBox7.Text.ToString (). Trim ();
itemrow ["Communication Software"] = comboBox8.Text.ToString (). Trim ();
itemrow ["Communication Software ID"] = textBox10.Text.ToString (). Trim ();
itemrow ["Phone"] = textBox11.Text.ToString (). Trim ();
if (textBox12.Text.Trim ()! = "")
{
itemrow ["Task Time"] = dateTimePicker2.Value;
}
if (textBox13.Text.Trim ()! = "")
{
itemrow ["Completion time"] = dateTimePicker3.Value;
}
itemrow ["Detailed Description"] = richTextBox1.Text.ToString (). Trim ();
jyda.Update (managerDataSet, "JYDJL"); |
|