| 
 | 
| 在asp中将一个access表中的部分记录复制出来生成一个新表: connstr="dbq=" & server.mappath("mdb/db1.mdb") & ";driver={microsoft access driver (*.mdb)};"
 set conn=server.createobject("adodb.connection")
 conn.open connstr
 sql="select * from bm where spec='"&spec&"' and length='"&length&"' and zxsj='"&zxsj&"' into jsj.dbf"
 conn.execute sql
 但dw调试时需很长时间,甚至死机,后出现找不到服务器,记录很少,请赐教!多谢!
 | 
 |