标题: 求助:数据库更改 [打印本页] 作者: 无民 时间: 2010-1-17 07:34 标题: 求助:数据库更改 <%
set conn=server.CreateObject("adodb.connection")
conn.connectionstring="provider=microsoft.jet.oledb.4.0;data source="&server.MapPath("1.mdb")
conn.open
sql="select * from oblog_user"
set rs=server.CreateObject("adodb.recordset")
rs.open sql,conn,2,3
if not rs.bof then
rs.movefirst
end if
do while not rs.eof
if rs("user_domainroot")="" then
set rs("user_domainroot")="http://www.sina.com"
end if
if rs("user_domain")="" then
user1=rs("username")
set rs("user_domain")=user1
end if
rs.update
rs.movenext
loop
%>
运行不报错,可是数据有的还是空的,还是没改,请问一下错在哪!
谢谢!作者: 欧阳天明 时间: 2010-1-17 07:35
<%
set conn=server.CreateObject("adodb.connection")
conn.connectionstring="provider=microsoft.jet.oledb.4.0;data source="&server.MapPath("1.mdb")
conn.open
sql="select * from oblog_user"
set rs=server.CreateObject("adodb.recordset")
rs.open sql,conn,2,3
do while not rs.eof
if rs("user_domainroot")="" then
rs("user_domainroot")="http://www.sina.com"
end if
if rs("user_domain")="" then
user1=rs("username")
rs("user_domain")=user1
end if
rs.update
rs.movenext
loop
%>
这样试一试呢?作者: 独臂神军 时间: 2010-1-17 07:35
set rs("user_domainroot")="http://www.sina.com"
set干啥用的?作者: √wo 时间: 2010-1-17 07:35
<%
set conn=server.CreateObject("adodb.connection")
conn.connectionstring="provider=microsoft.jet.oledb.4.0;data source="&server.MapPath("1.mdb")
conn.open
sql="select * from oblog_user"
set rs=server.CreateObject("adodb.recordset")
rs.open sql,conn,2,3
if not rs.bof then
rs.movefirst
end if
do while not rs.eof
if trim(rs("user_domainroot"))="" then
rs("user_domainroot")="http://www.sina.com"
end if
if trim(rs("user_domain"))="" then
user1=rs("username")
rs("user_domain")=user1
end if
rs.update
rs.movenext
loop
%>作者: ahwx 时间: 2010-2-16 15:05
我十目一行也还是看不懂啊