我试图将datetime
存储到SQL数据库中。我使用datetime2(0)
变量来达到这个目的。
但是我总是得到这个异常:
下面是生成错误的代码:从字符转换日期和/或时间时转换失败字符串
protected void InsertDB(string title, string desc, string cat, string path)
{
string now = DateTime.Now.ToString("dd-MM-yyyy h:mm:ss tt");
title = title.Length == 0 ? "Untitled" : title;
cat = cat.Length == 0 ? "Uncategorized" : cat;
string cs = ConfigurationManager.ConnectionStrings["DBCS"].ConnectionString;
using (SqlConnection con = new SqlConnection(cs))
{
try
{
SqlCommand cmd = new SqlCommand(@"INSERT INTO gallery (img_title, img_desc, img_cat, img_date, img_path)
VALUES (@title, @desc, @cat, @date, @path)", con);
con.Open();
cmd.Parameters.AddWithValue("@title", title.Trim());
cmd.Parameters.AddWithValue("@desc", desc.Trim());
cmd.Parameters.AddWithValue("@cat", cat.Trim());
cmd.Parameters.AddWithValue("@date", now.Trim());
cmd.Parameters.AddWithValue("@path", path.Trim());
int result = cmd.ExecuteNonQuery();
if (result == 1)
{
msg_lbl.Visible = true;
msg_lbl.Text = "New Image is uploaded.";
title_txt.Text = "";
desc_txt.Text = "";
cat_txt.Text = "";
}
else
{
msg_lbl.Visible = true;
msg_lbl.Text = "Error occured.";
}
}
catch (SqlException ex)
{
msg_lbl.Visible = true;
msg_lbl.Text = ex.Message; //I get this exception here
}
catch (Exception ex)
{
msg_lbl.Visible = true;
msg_lbl.Text = ex.Message;
}
}
在sql查询中传递变量"now"时必须出错。如果列Img_date
是一个日期时间字段,那么你必须传递值作为一个日期时间,而不是作为一个字符串。尝试将值Datetime.Now
分配给参数@date
:
cmd.Parameters.AddWithValue("@date", DateTime.Now);
当使用DateTime2
列时,您需要特别设置参数类型-默认为DateTime
与AddWithValue
。
试试这个:
SqlParameter parm = cmd.Parameters.Add("@date", SqlDbType.DateTime2);
parm.Value = DateTime.Now;
根据MSDN:
http://msdn.microsoft.com/en-us/library/bb675168.aspx@date参数可以映射到日期、datetime或datetime2数据在服务器上键入。在使用新的日期时间数据类型时,您可以必须显式地将参数的SqlDbType属性设置为数据实例类型。使用变量或隐式提供参数属性的向后兼容性可能导致问题Datetime和smalldatetime数据类型。
你得到这个错误是因为tsql不接受'tt'格式说明符