这里的查询语句再加括号是什么意思Format("(select....))",) 不加就报错,莫非跟后面的那条更新SQL有关系 5
stringid=string.Format("(selectidfromOrderInfowhereFlightNo='{0}'andLeaveDate='{1}')"...
string id = string.Format("(select id from OrderInfo where FlightNo='{0}' and LeaveDate='{1}')", txtHangBanNo.Text, txtDate.Text);
sql = string.Format("Update OrderInfo set Number={0} where id={1} ", bookedSeatNum, id);
cmd = new SqlCommand(sql, DBHelper.conn);
int count = cmd.ExecuteNonQuery();
if (count > 0)
{
MessageBox.Show("预定成功!");
Format("(select....))",) 又加的括号到底什么含义,不明白,cmd = new SqlCommand(sql, DBHelper.conn);的sql包容查询?给了最后面的int count = cmd.ExecuteNonQuery();不是只接收增删改吗,这几句前后怎么关联,麻烦高人分解的详细些 展开
sql = string.Format("Update OrderInfo set Number={0} where id={1} ", bookedSeatNum, id);
cmd = new SqlCommand(sql, DBHelper.conn);
int count = cmd.ExecuteNonQuery();
if (count > 0)
{
MessageBox.Show("预定成功!");
Format("(select....))",) 又加的括号到底什么含义,不明白,cmd = new SqlCommand(sql, DBHelper.conn);的sql包容查询?给了最后面的int count = cmd.ExecuteNonQuery();不是只接收增删改吗,这几句前后怎么关联,麻烦高人分解的详细些 展开
4个回答
展开全部
string id = string.Format("(select id from OrderInfo where FlightNo='{0}' and LeaveDate='{1}')", txtHangBanNo.Text, txtDate.Text);
(select id from OrderInfo where FlightNo='{0}' and LeaveDate='{1}')这里的{0}{1}是占位符,执行时用于后面的参数代入。
txtHangBanNo.Text, txtDate.Text这2个就是参数{0}{1}。
(select id from OrderInfo where FlightNo='{0}' and LeaveDate='{1}')这里的{0}{1}是占位符,执行时用于后面的参数代入。
txtHangBanNo.Text, txtDate.Text这2个就是参数{0}{1}。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
{0}=bookedSeatNum
{1}=id
起到组装一个sql查询语句的作用。
加括号是复合查询啊
类似select * from xx where name not in(select name from yy)
{1}=id
起到组装一个sql查询语句的作用。
加括号是复合查询啊
类似select * from xx where name not in(select name from yy)
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你这不是查询语句呀
是把查询出来的结果格式化而已
跟数据库没关系
是把查询出来的结果格式化而已
跟数据库没关系
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
Format表示字符串格式化 字符串肯定要加双引号的啊
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询