如何使用asp.net将数据表传递给SQL Server
本文关键字:SQL Server 数据表 何使用 asp net | 更新日期: 2023-09-27 17:59:23
我正在开发一个asp.net web应用程序,在该应用程序中,我将一个DataTable
从asp.net应用程序传递到SQL Server存储过程。
我在SQL Server中的表是
Student(ID bigint, Name nvarchar(max), Reg bigint).
在该表中,ID
是主键并自动递增。单击按钮时将DataTable
传递到存储过程的c#代码是:
protected void btnSubmit_Click(object sender, EventArgs e)
{
try
{
DataTable dt = new DataTable("Student");
dt.Columns.Add("Reg", typeof(long));
dt.Columns.Add("Name", typeof(string));
// Create a new row
for (int i = 0; i < 3; i++)
{
DataRow NewRow = dt.NewRow();
if (i == 0)
{
NewRow["Name"] = "Raunak";
NewRow["Reg"] = Convert.ToInt64(1); ;
}
if (i == 1)
{
NewRow["Name"] = "Vikash";
NewRow["Reg"] = Convert.ToInt64(1);
}
if (i == 2)
{
NewRow["Name"] = "Deepak";
NewRow["Reg"] = Convert.ToInt64(1);
}
dt.Rows.Add(NewRow);
}
dt.AcceptChanges();
string constring = ConfigurationManager.ConnectionStrings["conString"].ConnectionString;
SqlConnection cnn = new SqlConnection(@"Data Source=.'sqlexpress; Initial Catalog=builderERP; Integrated Security=True;");
SqlCommand selectCommand = new SqlCommand("Student_Insert_Update_Delete", cnn);
selectCommand.CommandType = CommandType.StoredProcedure;
SqlParameter tvpParam = selectCommand.Parameters.AddWithValue("@Student", dt);
tvpParam.SqlDbType = SqlDbType.Structured;
cnn.Open();
int xx = selectCommand.ExecuteNonQuery();
if (xx > 0)
{
lblMsg.Text = "Data Successfully Inserted.";
}
else
{
lblMsg.Text = "Data Insertion Failed.";
}
cnn.Close();
}
catch (Exception ex)
{
throw (ex);
}
}
我在T-SQL中的存储过程是:
CREATE PROCEDURE [dbo].[Student_Insert_Update_Delete]
(
@Student AS [dbo].[StudentTableVal] Readonly
)
AS
BEGIN
INSERT INTO Student(Name,Reg)
SELECT Name,Reg FROM @Student
--commit transaction
END
我创建了一个表类型为:
CREATE TYPE StudentTableVal AS TABLE
(
Name NVARCHAR(max),
Reg bigint
)
但当我点击按钮将DataTable
插入Student
表时,我会得到这个错误:
将数据类型nvarchar转换为bigint时出错
表值参数"@Student"的数据不符合该参数的表类型。
请帮帮我。
我唯一能想到的是,它不是按名称而是按索引映射列,所以试着反转列定义,看看会发生什么:
dt.Columns.Add("Name", typeof(string));
dt.Columns.Add("Reg", typeof(long));
希望它能起作用。
尝试使用Print命令打印SQL中的@Student参数值一旦获得动态生成的完整SQL字符串,尝试执行Student_Insert_Update_Delete存储过程中编写的完整SQL语句,您就会知道语句中缺少什么