当我尝试在表pay_cheque中插入任何帮助时,我收到此错误
private void btnadd_Click(object sender, EventArgs e)
{
string s = "insert into pay_cheque values('Sai','Sai','Sai','Sai','10.2','1989/2/3','Sai')";
SqlConnection con = new SqlConnection("server=.;Data Source=.;Initial Catalog=Book;Integrated Security=True");
SqlDataAdapter da = new SqlDataAdapter(s, con);
DataSet ds = new DataSet();
da.Fill(ds, "x");
dataGridView1.DataSource = ds.Tables[0];
}
答案 0 :(得分:0)
Fill 方法将检索查询数据并填充数据集。但是,您没有使用查询语句。您只能使用SELECT语句执行此操作,然后您可以检索数据并填充数据集。
要检索数据,请在插入主键后使用基于主键的SELECT语句。即使这样做在我看来也毫无用处。