C#插入Access数据库日期输入错误

时间:2018-10-15 12:36:53

标签: database winforms access

伙计们,我做了一个表格,用户输入评论并将其保存在访问数据库中,但我只会在日期上出现错误。图片在上面。 PLS可以帮助我。

谢谢

Table

Error

IMAGE

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);
             }

0 个答案:

没有答案