|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
Access是一种桌面数据库,只适合数据量少的应用,在处理少量数据和单机访问的数据库时是很好的,效率也很高。但是它的同时访问客户端不能多于4个。access数据库有一定的极限,如果数据达到100M左右,很容易造成服务器iis假死,或者消耗掉服务器的内存导致服务器崩溃。ado|asp+|示例|数据|ado|示例//showdata.asp
<%@language="vbscript"codepage="936"%>
<html>
<head>
<title>[showthedata]</title>
</head>
<body>
<%
Application.Lock()
setdataConnect=Server.CreateObject("ADODB.Connection")
strConnect="Provider=Microsoft.Jet.OLEDB.4.0;DataSource="_
&Server.MapPath("db1.mdb")&_
";PersistSecurityInfo=True"
dataConnect.Open(strConnect)
ifRequest.Form("name")""orRequest.Form("phone")then
sqlInsertcmd="insertintotable1(name,phone)values("_
&Request.Form("name")&","&Request.Form("phone")&")"
dataConnect.Execute(sqlInsertcmd)
endif
setdbtabptr=Server.CreateObject("ADODB.Recordset")
dbtabptr.ActiveConnection=dataConnect
strSql="select*fromtable1"
dbtabptr.Open(strSql)
Response.Write("<tablewidth=100%border=1>")
Response.Write("<tr>")
Response.Write("<th>name</th>")
Response.Write("<th>phone</th>")
dbtabptr.MoveFirst()
dountildbtabptr.EOF
Response.Write("<tr>")
Response.Write("<td>")
Response.Write(dbtabptr("name"))
Response.Write("</td>")
Response.Write("<td>")
Response.Write(dbtabptr("phone"))
Response.Write("</td>")
Response.Write("</tr>")
dbtabptr.MoveNext()
loop
Response.Write("</tr>")
Response.Write("</table>")
dataConnect.Close()
Application.UnLock()
%>
<ahref="addData.asp">AddaDatatoDatabase</a>
</body>
</html>
//addData.asp
<%@language="vbscript"codepage="936"%>
<html>
<head>
<title>[Adddata]</title>
</head>
<body>
<formname="adddata"action="showData.asp"method="post">
<table>
<tr>
<tdalign="right">name:</td>
<td><inputname="name"type="text"/></td>
</tr>
<tr>
</p>实现规模效益。与传统的用户拥有硬件软件所有权和使用权以及传统的应用服务商提供一对一的服务模式不同,ASP拥有应用系统所有权,用户拥有使用权,应用系统集中放在ASP的数据中心中,集中管理,分散使用,以一对多的租赁的形式为众多用户提供有品质保证的应用技术服务,实现规模效益。 |
|