VB提示参数不足,期待是一,代码如下:
sFormerFascia=“Good”sSQL="Updatetbl_StoreInfoSETtbl_StoreInfo.PreviousFascia="&Chr(34...
sFormerFascia = “Good”
sSQL = "Update tbl_StoreInfo SET tbl_StoreInfo.PreviousFascia = " & Chr(34) & sFormerFascia & Chr(34) & " where tbl_StoreInfo.StoreID=" & sStoreID Set rst = gcnAccessStores.Execute(sSQL) 展开
sSQL = "Update tbl_StoreInfo SET tbl_StoreInfo.PreviousFascia = " & Chr(34) & sFormerFascia & Chr(34) & " where tbl_StoreInfo.StoreID=" & sStoreID Set rst = gcnAccessStores.Execute(sSQL) 展开
2个回答
展开全部
直接把chr(34)换成普通的单引号呢
sFormerFascia ="Good" //注意这里,你写成了中文状态下的双引号了
sSQL = "Update tbl_StoreInfo SET tbl_StoreInfo.PreviousFascia = '" & sFormerFascia & "' where tbl_StoreInfo.StoreID=" & sStoreID '另外这里的sStoreID是否存在,得注意~
Set rst = gcnAccessStores.Execute(sSQL)
sFormerFascia ="Good" //注意这里,你写成了中文状态下的双引号了
sSQL = "Update tbl_StoreInfo SET tbl_StoreInfo.PreviousFascia = '" & sFormerFascia & "' where tbl_StoreInfo.StoreID=" & sStoreID '另外这里的sStoreID是否存在,得注意~
Set rst = gcnAccessStores.Execute(sSQL)
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询