数据未从我的 C# 应用程序插入数据库,但未发现错误或异常。但是我可以使用 select 语句和数据阅读器从数据库中读取数据。
private void button2_Click(object sender, EventArgs e)
{
string conString = Properties.Settings.Default.dbConnectionString;
// Open the connection using the connection string.
SqlCeConnection con = new SqlCeConnection(conString);
con.Open();
// Insert into the SqlCe table. ExecuteNonQuery is best for inserts.
SqlCeCommand com = new SqlCeCommand("INSERT INTO test VALUES('num')", con);
com.CommandType = CommandType.Text;
// com.Parameters.AddWithValue("@num", "num");
com.ExecuteNonQuery();
MessageBox.Show("ok");
}
按下按钮后,将显示消息框。但是没有插入数据。
连接字符串:
Data Source=d:\manu\smalldb\smalldb\db.sdf