============================================================ 数据库:Informix Dynamic Server Version 7.31.UC5 For Sco Unix 5.05 Web :Windows2000 Advanced Server SP4,IIS5.0,Informix Client SDK2.50 ASP源代码如下: ============================================================ Set conn=Server.CreateObject("ADODB.CONNECTION") Set rs=Server.CreateObject("ADODB.RecordSet") conn.open "dsn=jhtest;uid=informix;pwd=informix" set rs=conn.execute("select * from clerk where clerk_name = '大梦'") do while not rs.eof and not rs.bof ---输出语句---- rs.movenext loop rs.close conn.close ============================================================