Microsoft OLE DB Provider for ODBC Drivers (0x80040E14) [Microsoft][ODBC SQL Server Driver][SQL Server]第 1 行: '105' 附近有语法错误。 /pu2/Health_Sc/001_page.asp, 第 98 行
程序如下: m_001=trim(request("m_001")) set rp1=server.createobject("adodb.recordset") str1="select * from 105_table_001 order by id" rp1.open str1,conn,1,3(98行) if not rp1.eof then if id="" then id=trim(rp1("id")) end if if m_001="" then m_001=rp1("m_001") end if for i=1 to rp1.recordcount if not rp1.eof then
这个问题第1个回答:
select * from [105_table_001] order by id
改成这样的
这个问题第2个回答:
str1="select * from 105_table_001 order by id" 改成 str1="select * from [105_table_001] order by id"
这个问题第3个回答:
同意楼上两位的
这个问题第4个回答:
踩...
这个问题第5个回答: