4

我正在尝试使用 c#、.net 2.0 和 SQLServer 2012 Express 将 DataTable 发送到存储过程。

这大致就是我正在做的事情:

        //define the DataTable
        var accountIdTable = new DataTable("[dbo].[TypeAccountIdTable]");

        //define the column
        var dataColumn = new DataColumn {ColumnName = "[ID]", DataType = typeof (Guid)};

        //add column to dataTable
        accountIdTable.Columns.Add(dataColumn);

        //feed it with the unique contact ids
        foreach (var uniqueId in uniqueIds)
        {
            accountIdTable.Rows.Add(uniqueId);
        }

        using (var sqlCmd = new SqlCommand())
        {
            //define command details
            sqlCmd.CommandType = CommandType.StoredProcedure;
            sqlCmd.CommandText = "[dbo].[msp_Get_Many_Profiles]";
            sqlCmd.Connection = dbConn; //an open database connection

            //define parameter
            var sqlParam = new SqlParameter();
            sqlParam.ParameterName = "@tvp_account_id_list";
            sqlParam.SqlDbType = SqlDbType.Structured;
            sqlParam.Value = accountIdTable;

            //add parameter to command
            sqlCmd.Parameters.Add(sqlParam);

            //execute procedure
            rResult = sqlCmd.ExecuteReader();

            //print results
            while (rResult.Read())
            {
                PrintRowData(rResult);
            }
        }

但后来我收到以下错误:

ArgumentOutOfRangeException: No mapping exists from SqlDbType Structured to a known DbType.
Parameter name: SqlDbType

SqlParameter.TypeName经过进一步调查(在 MSDN、SO 和其他地方),似乎 .net 2.0不支持将 DataTable 发送到数据库(缺少诸如声称此功能在 .net 2.0 中不可用

这是真的?

如果是这样,是否有另一种方法可以将数据集合发送到数据库?

提前致谢!

4

2 回答 2

1

开箱即用,ADO.NET 没有充分的理由支持这一点。DataTable 可以包含任意数量的列,这些列可能会映射到数据库中的真实表,也可能不会。

如果我了解您想要做什么 - 将 DataTable 的内容快速上传到具有相同结构的预定义真实表中,我建议您调查SQLBulkCopy

从文档中:

Microsoft SQL Server 包括一个名为 bcp 的流行命令提示实用程序,用于将数据从一个表移动到另一个表,无论是在单个服务器上还是在服务器之间。SqlBulkCopy 类允许您编写提供类似功能的托管代码解决方案。还有其他方法可以将数据加载到 SQL Server 表中(例如 INSERT 语句),但 SqlBulkCopy 提供了比它们显着的性能优势。

SqlBulkCopy 类可用于仅将数据写入 SQL Server 表。但是,数据源不限于 SQL Server;可以使用任何数据源,只要数据可以加载到 DataTable 实例或使用 IDataReader 实例读取。

将 SqlDateTime 类型的 DataTable 列大容量加载到类型是 SQL Server 2008 中添加的日期/时间类型之一的 SQL Server 列时,SqlBulkCopy 将失败。

但是,您可以在更高版本的 SQL Server 中定义表值参数,并使用它以您要求的方法发送表(DateTable)。在http://sqlwithmanoj.wordpress.com/2012/09/10/passing-multipledynamic-values-to-stored-procedures-functions-part4-by-using-tvp/有一个例子

于 2013-01-01T16:44:28.257 回答
0

根据我的经验,如果您能够在 C# 中编译代码,则意味着 ADO.Net 支持该类型。但是如果在执行代码时它失败了,那么目标数据库可能不支持它。在您的情况下,您提到了 [Sql Server 2012 Express],因此它可能不支持它。根据我的理解,[Sql Server 2005] 支持表类型,但您必须将数据库兼容模式保持在大于 99 或其他值。我 100% 肯定它会在 2008 年工作,因为我已经使用它并广泛使用它通过使用 [用户定义的表类型](又名 UDTT)作为存储过程的参数的存储过程进行批量更新。同样,您必须保持数据库兼容性大于 99 才能使用 MERGE 命令进行批量更新。

And of course you can use SQLBulkCopy but not sure how reliable it is, is depending on the

于 2015-02-02T18:06:05.727 回答