日期:2014-05-16  浏览次数:20925 次

ASP更新Access数据
建立了一个ACCESS数据库,设置together字段,数字型.

ASP代码:
bb=56
conn.execute"update Count set together='"&bb&"'  where id=1"


数据库一直更新不成功.请问问题出在哪里?
------解决方案--------------------
conn.execute"update [Count] set together="&bb&"  where id=1" 
试试这个,如果还不行,应该是权限问题了。