在存储过程的 SqlParameter 中使用 DateTime,格式错误

Posted

技术标签:

【中文标题】在存储过程的 SqlParameter 中使用 DateTime,格式错误【英文标题】:Using DateTime in a SqlParameter for Stored Procedure, format error 【发布时间】:2010-09-30 08:45:45 【问题描述】:

我正在尝试使用 DateTime 作为 SqlParameter 的值从 C#、.NET 2.0 调用存储过程(在 SQL 2005 服务器上)。存储过程中的 SQL 类型是 'datetime'。

从 SQL Management Studio 执行存储过程可以正常工作。但是每次我从 C# 调用它时,我都会收到有关日期格式的错误。

当我运行 SQL Profiler 来观察调用时,我会复制粘贴 exec 调用以查看发生了什么。这些是我对我所尝试的观察和笔记:

1) 如果我将DateTime 直接作为DateTime 传入或转换为SqlDateTime,则该字段由一对单引号包围,例如

@Date_Of_Birth=N''1/8/2009 8:06:17 PM''

2) 如果我将DateTime 作为字符串传递,我只会得到单引号

3) 使用 SqlDateTime.ToSqlString() 不会产生 UTC 格式的日期时间字符串(即使在转换为通用时间之后)

4) 使用 DateTime.ToString() 不会产生 UTC 格式的日期时间字符串。

5) 手动将SqlParameterDbType 设置为DateTime 不会改变上述观察结果。

那么,我的问题是,我到底如何让 C# 在SqlParameter 中传递正确格式化的时间?当然这是一个常见的用例,为什么很难开始工作?我似乎无法将 DateTime 转换为与 SQL 兼容的字符串(例如 '2009-01-08T08:22:45')

编辑

RE:BFree,实际执行sproc的代码如下:

using (SqlCommand sprocCommand = new SqlCommand(sprocName))

    sprocCommand.Connection = transaction.Connection;
    sprocCommand.Transaction = transaction;
    sprocCommand.CommandType = System.Data.CommandType.StoredProcedure;
    sprocCommand.Parameters.AddRange(parameters.ToArray());
    sprocCommand.ExecuteNonQuery();

更详细地了解我的尝试:

parameters.Add(new SqlParameter("@Date_Of_Birth", DOB));

parameters.Add(new SqlParameter("@Date_Of_Birth", DOB.ToUniversalTime()));

parameters.Add(new SqlParameter("@Date_Of_Birth", 
    DOB.ToUniversalTime().ToString()));

SqlParameter param = new SqlParameter("@Date_Of_Birth", 
    System.Data.SqlDbType.DateTime);
param.Value = DOB.ToUniversalTime();
parameters.Add(param);

SqlParameter param = new SqlParameter("@Date_Of_Birth", 
    SqlDbType.DateTime);
param.Value = new SqlDateTime(DOB.ToUniversalTime());
parameters.Add(param);

parameters.Add(new SqlParameter("@Date_Of_Birth", 
    new SqlDateTime(DOB.ToUniversalTime()).ToSqlString()));

附加编辑

我认为最有可能工作的一个:

SqlParameter param = new SqlParameter("@Date_Of_Birth",  
    System.Data.SqlDbType.DateTime);
param.Value = DOB;

在 SQL 事件探查器中看到的 exec 调用中产生此值

@Date_Of_Birth=''2009-01-08 15:08:21:813''

如果我将其修改为:

@Date_Of_Birth='2009-01-08T15:08:21'

它可以工作,但它不会使用一对单引号进行解析,并且它不会正确转换为 DateTime 日期和时间之间的空格以及末尾的毫秒。

更新和成功

我在下面的请求之后复制/粘贴了上面的代码。为了简洁起见,我在这里和那里修剪了一些东西。原来我的问题出在我遗漏的代码中,我相信你们中的任何人都会立即发现。我已经将我的存储过程调用包装在一个事务中。原来我根本没有做transaction.Commit()!!!!!!我很惭愧地说,但你有它。

我仍然不知道从探查器返回的语法发生了什么。一位同事在他的计算机上查看了他自己的分析器实例,它返回了正确的语法。从我的分析器中观察非常相同的执行显示了不正确的语法。它充当了红鲱鱼,让我相信存在查询语法问题,而不是更简单和真实的答案,即我需要提交事务!

我将下面的答案标记为正确,并对其他人投了一些赞成票,因为他们毕竟回答了这个问题,即使他们没有解决我的具体(脑残)问题。

【问题讨论】:

【参考方案1】:

您如何设置SqlParameter?您应该将SqlDbType property 设置为SqlDbType.DateTime,然后将DateTime 直接传递给参数(不要转换为字符串,那您会问一堆问题)。

您应该能够将值存入数据库。如果没有,这是一个非常简单的示例:

static void Main(string[] args)

    // Create the connection.
    using (SqlConnection connection = new SqlConnection(@"Data Source=..."))
    
        // Open the connection.
        connection.Open();

        // Create the command.
        using (SqlCommand command = new SqlCommand("xsp_Test", connection))
        
            // Set the command type.
            command.CommandType = System.Data.CommandType.StoredProcedure;

            // Add the parameter.
            SqlParameter parameter = command.Parameters.Add("@dt",
                System.Data.SqlDbType.DateTime);

            // Set the value.
            parameter.Value = DateTime.Now;

            // Make the call.
            command.ExecuteNonQuery();
        
    

我认为这里的部分问题是您担心时间是 UTC 的事实没有被传送到 SQL Server。为此,您不应该这样做,因为 SQL Server 不知道特定时间在特定的语言环境/时区中。

如果您想存储 UTC 值,则在将其传递给 SQL Server 之前将其转换为 UTC(除非您的服务器与生成 DateTime 的客户端代码具有相同的时区,即使那样,这也是一个风险,国际海事组织)。 SQL Server 将存储这个值,当你取回它时,如果你想在本地时间显示它,你必须自己做(DateTime 结构很容易做到)。

话虽如此,如果您执行转换,然后将转换后的 UTC 日期(通过调用 ToUniversalTime method,而不是通过转换为字符串获得的日期)传递给存储过程。

当您取回值时,调用ToLocalTime method 以获取本地时区的时间。

【讨论】:

【参考方案2】:

这是我添加参数的方法:

sprocCommand.Parameters.Add(New SqlParameter("@Date_Of_Birth",Data.SqlDbType.DateTime))
sprocCommand.Parameters("@Date_Of_Birth").Value = DOB

我假设当你写出 DOB 时没有引号。

您是否使用第三方控件来获取日期?我在从其中一些生成文本值的方式上遇到了问题。

最后,如果你输入参数的.Value属性而不引用DOB,它是否有效?

【讨论】:

它对我有用,只是在第二行进行了一次更正:sprocCommand.Parameters["@Date_Of_Birth"].Value = DOB【参考方案3】:

只需使用:

 param.AddWithValue("@Date_Of_Birth",DOB);

这会解决你所有的问题。

【讨论】:

似乎不起作用 - 根据 SQL Profiler,字符串格式不正确,如果我复制粘贴,每边的单引号对也无效【参考方案4】:

如果您使用Microsoft.ApplicationBlocks.Data,它将使调用您的存储过程成为一行

SqlHelper.ExecuteNonQuery(ConnectionString, "SprocName", DOB)

哦,我认为 casperOne 是正确的...如果您想确保多个时区的正确日期时间,那么只需将值转换为 UTC,然后再将值发送到 SQL Server

SqlHelper.ExecuteNonQuery(ConnectionString, "SprocName", DOB.ToUniversalTime())

【讨论】:

以上是关于在存储过程的 SqlParameter 中使用 DateTime,格式错误的主要内容,如果未能解决你的问题,请参考以下文章

执行存储过程时,返回参数示例代码

System.Data.SqlClient.SqlParameter.IsNullable 的目的是啥?

SqlHelper中SqlHelperParameterCache类的用法介绍

ADO存储过程中使用误区

SQLServer------存储过程在C#中的使用方法

为啥我需要一个局部变量来将 SqlParameter 中的值从 Ajax 存储到 WCF 方法