我是编程的新手,当我尝试传递日期时间选择器选择的日期时,它表示错误,例如无法从字符串转换为日期类型。
这是我使用的代码的一部分。
connection.Open()
Dim command As New OleDbCommand("INSERT INTO Students (DATE) VALUES(@DOB),connection)
command.Parameters.Add("@dob", OleDbType.Date).Value = DateTimePicker.Value.Date
command.ExecuteNonQuery()
connection.close()
答案 0 :(得分:0)
SelSQL01.Parameters.Add(“@ DOB”,SqlDbType.DateTime).Value = Convert.ToDateTime(DateTimePicker.Value.Date)
这适用于SQL。