asp.net+sql数据库做网页,cmd.ExecuteNonQuery();错误:不存在从对象类型 System.String[] 到已知的...
usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Web;usingSys...
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.Configuration;
using System.Data;
using System.Data.SqlClient;
using System.Data.OleDb;
public partial class newbuying : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void buying_to_bargain(object sender, EventArgs e)
{
//将所选插入bargain表,并实现向buylist页面跳转
string constr = WebConfigurationManager.ConnectionStrings["bookifoConnectionString1"].ConnectionString;
SqlConnection con = new SqlConnection(constr);
string sql = "select count(*) from [buying] ";
SqlCommand cmd = new SqlCommand(sql, con);
con.Open();
int n=Convert.ToInt32(cmd.ExecuteScalar());
con.Close();
int k=0;
while(k<n)
{
string sql2="insert into [bargain] values(@username,@tosb,@address,@youbian,@bargainbookID,@bookamount, ,@date)";
cmd.Parameters.AddWithValue("@username", Session["username"]);
cmd.Parameters.AddWithValue("@tosb",TextBox2.Text );
cmd.Parameters.AddWithValue("@address",TextBox3.Text );
cmd.Parameters.AddWithValue("@youbian",TextBox4.Text );
cmd.Parameters.AddWithValue("bargainbookID", GridView1.DataKeyNames); cmd.Parameters.AddWithValue("@bookamount", GridView1.Rows[k].Cells[8]);
cmd.Parameters.AddWithValue("@date",System.DateTime.Now);
cmd.CommandText = sql2;
con.Open();
cmd.ExecuteNonQuery();
con.Close();
k++;
}
}
}
错误:不存在从对象类型 System.String[] 到已知的托管提供程序本机类型的映射。 展开
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.Configuration;
using System.Data;
using System.Data.SqlClient;
using System.Data.OleDb;
public partial class newbuying : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void buying_to_bargain(object sender, EventArgs e)
{
//将所选插入bargain表,并实现向buylist页面跳转
string constr = WebConfigurationManager.ConnectionStrings["bookifoConnectionString1"].ConnectionString;
SqlConnection con = new SqlConnection(constr);
string sql = "select count(*) from [buying] ";
SqlCommand cmd = new SqlCommand(sql, con);
con.Open();
int n=Convert.ToInt32(cmd.ExecuteScalar());
con.Close();
int k=0;
while(k<n)
{
string sql2="insert into [bargain] values(@username,@tosb,@address,@youbian,@bargainbookID,@bookamount, ,@date)";
cmd.Parameters.AddWithValue("@username", Session["username"]);
cmd.Parameters.AddWithValue("@tosb",TextBox2.Text );
cmd.Parameters.AddWithValue("@address",TextBox3.Text );
cmd.Parameters.AddWithValue("@youbian",TextBox4.Text );
cmd.Parameters.AddWithValue("bargainbookID", GridView1.DataKeyNames); cmd.Parameters.AddWithValue("@bookamount", GridView1.Rows[k].Cells[8]);
cmd.Parameters.AddWithValue("@date",System.DateTime.Now);
cmd.CommandText = sql2;
con.Open();
cmd.ExecuteNonQuery();
con.Close();
k++;
}
}
}
错误:不存在从对象类型 System.String[] 到已知的托管提供程序本机类型的映射。 展开
2个回答
展开全部
cmd.Parameters.AddWithValue("bargainbookID", GridView1.DataKeyNames);
变量不对,还有类型不匹配,DataKeyNames这是数组类型
变量不对,还有类型不匹配,DataKeyNames这是数组类型
追问
我以为GridView1.DataKeyNames是GridView1提供的主键,此处要获取该主键,该怎么获取?
追答
DataKeyNames取得是主键列的 名字 数组:比如{“id0”,"id1"}
你要取主键值得话用DataKeys[i].Value表时i行第0主键列的值
因为key可能包含多个字段,就像数据库一样
DataKeys[i].Values[j];
i表示的是第几行
j表示主键的第几列
展开全部
那句有问题 分析那里
你单步调试啊
你单步调试啊
更多追问追答
追问
倒数第三句 cmd.ExecuteNonQuery();
报错:不存在从对象类型 System.String[] 到已知的托管提供程序本机类型的映射。
追答
cmd.Parameters.AddWithValue("@username", Session["username"]);
cmd.Parameters.AddWithValue("@tosb",TextBox2.Text );
cmd.Parameters.AddWithValue("@address",TextBox3.Text );
cmd.Parameters.AddWithValue("@youbian",TextBox4.Text );
cmd.Parameters.AddWithValue("bargainbookID", GridView1.DataKeyNames); cmd.Parameters.AddWithValue("@bookamount", GridView1.Rows[k].Cells[8]);
cmd.Parameters.AddWithValue("@date",System.DateTime.Now);
应该是上面这些参数提供的有问题,你都在后面加上toString()试试
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询