设为首页收藏本站

新微赢技术网

 找回密码
 注册
搜索
热搜: 回贴
查看: 70|回复: 8
打印 上一主题 下一主题

数据库更新问题 请指教

[复制链接]
跳转到指定楼层
1#
发表于 2010-1-8 05:42:14 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
<!--#include file="conn.asp"-->
<%
Dim tpbts,tpfls,tpxxs,user1,id
tpbts=request.Form("tpbt")
tpfls=request.Form("tpfl")
tpxxs=request.Form("tpxx")
If session("users")<>"" Then
user1=session("users")
Else
user1="guest"
End If
Call openDB()
sql="select top 1 * from img order by id desc"
rs.open sql,conn,1,1
id=rs("id")
sql="update img set bt='"&tpbts&"',fl='"&tpfls&"',js='"&tpxxs&"',user='"&user1&"' where "&id&")"
conn.Execute(sql)
Call closeDB()
%>

提示错误
___________________________________________________________________________
错误类型:
Microsoft OLE DB Provider for ODBC Drivers (0x80040E14)
[Microsoft][ODBC Microsoft Access Driver] 多余的 ) 在查询表达式 '36)' 中。
/xc/tpxx.asp, 第 17 行
2#
发表于 2010-1-8 05:42:18 | 只看该作者
不用SQL=, 直接用conn.execute"update img set bt='"&tpbts&"',fl='"&tpfls&"',js='"&tpxxs&"',user='"&user1&"' where id="&id
快一点.
回复 支持 反对

使用道具 举报

3#
发表于 2010-1-8 05:42:21 | 只看该作者
有兄弟帮忙么 - -!
回复 支持 反对

使用道具 举报

4#
发表于 2010-1-8 05:42:24 | 只看该作者
sql="update img set bt='"&tpbts&"',fl='"&tpfls&"',js='"&tpxxs&"',user='"&user1&"' where &id&")"

改成

sql="update img set bt='"&tpbts&"',fl='"&tpfls&"',js='"&tpxxs&"',user='"&user1&"' where id="&id
回复 支持 反对

使用道具 举报

5#
发表于 2010-1-8 05:42:27 | 只看该作者
换成这个试试
sql="update img set bt='"&tpbts&"',fl='"&tpfls&"',js='"&tpxxs&"',user='"&user1&"' where id='"&id&"'"
回复 支持 反对

使用道具 举报

6#
发表于 2010-1-8 05:42:30 | 只看该作者
set rs=server.CreateObject("adodb.recordset")
rs.open "select * from img where id="&ID,conn,3,3
rs("bt")=tpbts
rs("fl")=tpfls
rs("js")=tpxxs
rs("user")=user1
rs.update()
回复 支持 反对

使用道具 举报

7#
发表于 2010-1-8 05:42:33 | 只看该作者
-啊哦 ASP初学者 请指教该如何改正
回复 支持 反对

使用道具 举报

8#
发表于 2010-1-8 05:42:39 | 只看该作者
sql="update img set bt='"&tpbts&"',fl='"&tpfls&"',js='"&tpxxs&"',user='"&user1&"' where "&id&")"

很明显的错误,有这样查询的吗?
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

申请友链|小黑屋|最新主题|手机版|新微赢技术网 ( 苏ICP备08020429号 )  

GMT+8, 2024-11-18 17:24 , Processed in 0.073558 second(s), 9 queries , Gzip On, Memcache On.

Powered by xuexi

© 2001-2013 HaiAn.Com.Cn Inc. 寰耽

快速回复 返回顶部 返回列表