vb的sql语句
sql="updatefastestsetuser='"&user&"',resource='"&Form3.times&"'wheretitle='"&Form2.fn...
sql = "update fastest set user ='" & user & "' , resource='" & Form3.times & "' where title='" & Form2.fname & "'"
conn.Execute (sql)
应该怎么改?
实时错误...
update 语句的语法错误 展开
conn.Execute (sql)
应该怎么改?
实时错误...
update 语句的语法错误 展开
5个回答
展开全部
Dim conn As SqlConnection = New SqlConnection
Dim cmd As SqlCommand = New SqlCommand
conn.ConnectionString = ConfigurationManager.ConnectionStrings("ConnSql").ConnectionString '这里需要设定数据库的连接字符串,
cmd.Connection = conn
'建议这样写sql
sql=string.format("update fastest set user='{0}',resource='{1}' where title=‘{2}' ",user,form3.times.text,form2.fname.text)
cmd.CommandText = sql
conn.open
cmd.ExecuteNonQuery
conn.close
Dim cmd As SqlCommand = New SqlCommand
conn.ConnectionString = ConfigurationManager.ConnectionStrings("ConnSql").ConnectionString '这里需要设定数据库的连接字符串,
cmd.Connection = conn
'建议这样写sql
sql=string.format("update fastest set user='{0}',resource='{1}' where title=‘{2}' ",user,form3.times.text,form2.fname.text)
cmd.CommandText = sql
conn.open
cmd.ExecuteNonQuery
conn.close
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
语法没错。检查变量的拼写错误
追问
具体怎么改?
追答
改成这样试试:
sql = "update fastest set user ='" & user & "' , resource='" & Form3.times & "' where title='" & Form2.fname & "'"
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
sql = "update fastest set user ='" & user & "' , resource='" & Form3.times & "' where title='" & Form2.fname & "'"
修改为
sql = "update fastest set [user] ='" & user & "' , resource='" & Form3.times & "' where title='" & Form2.fname & "'"
修改为
sql = "update fastest set [user] ='" & user & "' , resource='" & Form3.times & "' where title='" & Form2.fname & "'"
追问
不行啊。用你的变成了这个错误:至少一个参数没有被指定值
追答
你看看你的变量的值中有没有单引号什么的啊?估计是值中包含单引号了!建议你
user=replace(user,"'","''")
form3.times和form2.fname类似!
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
报的是什么错误?
语法好像没有问题的!~
语法好像没有问题的!~
追问
实时错误...
update 语句的语法错误
追答
什么数据库? access吗?
user是关键字 加个中括号 [user] 这样用!~
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |