2000年代后经典电影:这个 能不能连到数据库呀 并输出一些东西呀

来源:百度文库 编辑:中科新闻网 时间:2024/05/08 02:11:03
<%
set conn=server.createobject("adodb.connection")
conn.open"DRIVER={Microsoft access driver(*.mdb)};dbq="&server.mappath("tushu.mdb")
%>
%>
<html>
<head>
<title>查询表单</title>
</head>

<body>
<%set rs=Server.CreateObject("adodb.recordset")
rs.open "select * form tushumingxi",conn%>
<%=rs("mc")%>
<%=rs("jg")%>
<%=rs("zz")%>
</body>
</html>

select * form tushumingxi
--------------------------->>>
select * from tushumingxi