伙计们,我做了一个表格,用户输入评论并将其保存在访问数据库中,但我只会在日期上出现错误。图片在上面。 PLS可以帮助我。
谢谢
try
{
string theDate = this.dateTimePicker1.Value.ToShortDateString();
MessageBox.Show(theDate);
String query = "Insert into Subscribers.Comments(Nickname,Comment,DateTime) values('sad','"+CommBox.Text+"','"+theDate+"');";
OleDbCommand command = new OleDbCommand(query, connection);
command = new OleDbCommand(query, connection);
command.ExecuteNonQuery();
MessageBox.Show("Αποστολή Σχολίου Επιτυχής!", "Ειδοποίηση");
}
catch (Exception ex)
{
MessageBox.Show("Error, " + ex);
}