ASP语言实现对SQL SERVER数据库的操作

2019-12-31 16:00:34来源:爱站网 阅读 ()

新老客户大回馈,云服务器低至5折

对于access来说,SQL Server数据库系统要比其他数据库要复杂很多,因此在程序开发中需要做更多的操作,今天爱站技术频道小编给大家介绍ASP语言实现对SQL SERVER数据库的操作。

1、系统环境

PII 350,Ram 64M,WINNT Server 4.0,
Service Pack4, IIS 4.0, SQL Server7.0。

2、系统功能

通过使用IE浏览器,在网上实现对《办公文件》数据表记录的添加和查询。

3、功能实现

(1)数据表的设置

①启动SQL Server7.0的Enterprise Manager,
在Databases 目录下增加一个新子目录"test";

②在"test"下增加一个new table,名为"办公文件",字段设置:文件名,char,100,允许空;文件内容,char,4000,允许空。

③在SQL Server中增加一个用户,名为hxl, 密码为123,登录模式为SQL 登录,将其默认登录数据库设为"test";

④在"test"数据库下增加一个新用户,名为hxl,其角色设为"Dbowner"。

(2)ODBC 链接

①在控制面板中,打开ODBC数据源,选择系统DSN项,单击"添加";

②选择"SQL Server"数据源,命名为"test";

③选择登录模式为SQL Server验证,登录标志为"hxl",密码为"123";

④将默认数据库高为"test",再测试数据库链接,接通即可。

(3)程序文件

为了实现系统功能,在这里编辑了3个程序文件,分别为"index.html"、"add.asp"和"query.asp",具体内容如下:

?①index.html:系统首页,包括两个选项,一是追加记录,二是查询,用户可单击两者之一,即可进入相应的操作过程。以下是源程序:

< html >
< head >
< meta http-equiv="Content-Language"
content="zh-cn" >
< meta http-equiv="Content-Type" 
content="text/html; charset=gb2312" >
< meta name="GENERATOR" content="Microsoft
FrontPage 4.0" >
< meta name="ProgId" content="FrontPage
.Editor.Document" >
< title >示例程序< /title >
< /head >
< body >
< p align="center" >
< font size="5" color="#008000" >
欢迎使用用ASP语言对SQL 
SERVER数据库操作示例< /font >< /P >
< p align="center" > < /P >
< p align="center" >< a href="add.asp" >
追加记录< /a >< /p >
< p align="center" >< a href="query.asp" >
查  询< /a >< /p >
< /body >
< /html >

?

②add.asp:实现对《办公文件》数据表记录的添加。页面中含有一个单行文本框(Txtbiaoti)和一个滚动文本框(Txtneirong),分别用来输入文件标题和文件内容。此外,页面中还应有两个按钮,"确定(Cmdok)"和"重写(Cmdcancel)",单击"确定"完成记录追加,单击"重写"重新输入内容。以下是源程序:

< html >
< head >
< meta http-equiv="Content-Type" 
content="text/html; charset=gb2312" >
< meta name="GENERATOR" content=
"Microsoft FrontPage 4.0" >
< meta name="ProgId" content=
"FrontPage.Editor.Document" >
< title >追加一条新记录< /title >
< /head >
< body >
< % if request.form("cmdok")="确定" then % >
< %
  set dbconnection=server.createobject
("adodb.connection") dbconnection.open"test","hxl","123"
sqlquery="insert "办公文件"
(文件名,文件内容)
values ('request.form("Txtbiaoti")','
request.form("Txtneirong")') 
set recadd=dbconnection.execute(sqlquery) % > 
< % else % >
< p align="center" >追加记录< /p >
< form method="POST" action="" >
 < p >文件名:< input type="text"
name="Txtbiaoti" size="20" >< /p >
< p >文件内容:< /p >
< p >   
  < textarea rows="3" 
name="Txtneirong" cols="60" >< /textarea >
< /p > 
< p align="center" >< input type="submit"
value="确定" name="Cmdok" >  
< input type="reset" value="重写" 
name="Cmdcancel" >
< /p >< /form >
< % end if% >
< /body >
< /html >

③query.asp:实现对《办公文件》数据表记录的查询。程序仅实现对《办公文件》中"文件名"的查询,查询结果用一个表单(Table)列出。以下是源程序:

< html >
< head >
< meta http-equiv="Content-Type" 
content="text/html;charset=gb2312" >
< meta name="GENERATOR" content="Microsoft 
FrontPage 4.0" >
< meta name="ProgId" content=
"FrontPage.Editor.Document" >
< title >检索文件< /title >
< /head >
< body bgcolor="#ffffdd" >
< %
set dbconnection=server.createobject
("adodb.connection")
dbconnection.open "test","hxl","123"
sqlquery="SELECT 文件名 FROM 办公文件 "
set resultlist=dbconnection.execute(sqlquery)
% >
< center > 
< font color="red" >< %=request("selectsource")% >
< /font >< font color="#008000" size="5" >< b >
有以下文件可供阅览< /b >< /font >
< hr size="5" >
< table border="1" >
< tr >
< td width="200" align="center" > < b >
文件名 < /b > < /td >
< /tr >
< % do while not resultlist.eof % >
 < tr >
  < td valign=center width="200" >< %=resultlist
("文件名")% >< /a >< /td >
< /tr >
< %
 resultlist.movenext
 loop
 resultlist.close
% >
< /center >
< /TABLE >
< /body >
< /html >

以上就是关于ASP语言实现对SQL SERVER数据库的操作,爱站技术频道小编希望可以帮助你更加了解这些知识,希望在编程这条平坦的大道上,通行无阻。


原文链接:https://js.aizhan.com/develop/asp/10982.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:asp中request与response的用法

下一篇:ASP输出excel文件实例讲解