asp連接access數據庫中
dim strSql, strSql2
strSql="Update 東方不敗 Set Sfhwhy='Y' where name='"&hy&"'"
conn2.Execute(strSql)
上述語句中的表名是東方不敗,我們直接寫到了查詢語句中,是可行的,但遺憾的是,用參數來替代就是不行
Dim km
km="東方不敗"
dim strSql, strSql2
strSql="Update "& km & "Set Sfhwhy='Y' where name='"&hy&"'"
conn2.Execute(strSql)
把參數賦值給km後,這就不行了
dim strSql, strSql2
strSql="Update "& "東方不敗" & "Set Sfhwhy='Y' where name='"&hy&"'"
conn2.Execute(strSql)
還是直接用字符串,只不過是以字符串連接的方式,也是不行,不明白是什麼原因,請高手指點下哈
可以,set前別缺空格,你打一下strSql
strSql="Update "& km & " Set Sfhwhy='Y' where name='"&hy&"'"