欢迎来到天天文库
浏览记录
ID:39464780
大小:38.50 KB
页数:5页
时间:2019-07-03
《ASP的多条件动态查询》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、ASP的多条件动态查询2003:8:26·来源:Asp/Jsp技术网karry 当用ASP与SQLServer数据库打交道时,查询语句是必不可少的。SQLServer数据库本身提供了丰富的查询语句,但是如何在ASP中实现对SQLServer数据库的多条件动态查询呢?笔者在用ASP开发一个基于SQLServer的网站时,较好地解决了这一问题,本文介绍其中的实现方法。数据库的定义在SQLServer中定义一个数据库,名称为“comm_server”。在该数据库中定义一个表,表名为“operator”,
2、包含如下表所示字段(仅以程序中用到的5个字段为例):字段名称备注Name姓名Varchar(20),定义为主键Educationallever学历Varchar(10)Grade职称Varchar(10)State现在状况Varchar(10)Time记录时间datetime输入网页的设计在index_people.htm网页中定义一个form,其中用到的标准用户界面元素如下:姓名:学历:选择职称:选择现在状况:选择TML程序代码如下:
3、_seek.asp程序进行处理-->姓名:学历:选择中专大专
姓名:学历:选择中专大专
4、本科硕士博士博士后职称:选择助工工程师5、ion>高级工程师现在状况:选择在位休假出差6、”>多条件动态查询的实现people_seek.asp程序代码如下:<%FunctionGetSQLServerConnection(Computer,UserID,Password,Db)DimParam7、s,connSetGetSQLServerConnection=NothingParams=“Provider=SQLOLEDB.1”Params=Params&“;DataSource=”&ComputerParams=Params&“;UserID=”&UserIDParams=Params&“;Password=”&PasswordParams=Params&“;InitialCatalog=”&DbSetconn=Server.CreateObject(“ADODB.Connection”8、)conn.OpenParamsSetGetSQLServerConnection=connEndFunctionFunctionGetSQLServerStaticRecordset(conn,source)DimrsSetrs=Server.CreateObject(“ADODB.Recordset”)rs.Opensource,conn,3,2SetGetSQLServerStaticRecordset=rsEndFunction%>
5、ion>高级工程师现在状况:选择在位休假出差6、”>多条件动态查询的实现people_seek.asp程序代码如下:<%FunctionGetSQLServerConnection(Computer,UserID,Password,Db)DimParam7、s,connSetGetSQLServerConnection=NothingParams=“Provider=SQLOLEDB.1”Params=Params&“;DataSource=”&ComputerParams=Params&“;UserID=”&UserIDParams=Params&“;Password=”&PasswordParams=Params&“;InitialCatalog=”&DbSetconn=Server.CreateObject(“ADODB.Connection”8、)conn.OpenParamsSetGetSQLServerConnection=connEndFunctionFunctionGetSQLServerStaticRecordset(conn,source)DimrsSetrs=Server.CreateObject(“ADODB.Recordset”)rs.Opensource,conn,3,2SetGetSQLServerStaticRecordset=rsEndFunction%>
6、”>多条件动态查询的实现people_seek.asp程序代码如下:<%FunctionGetSQLServerConnection(Computer,UserID,Password,Db)DimParam
7、s,connSetGetSQLServerConnection=NothingParams=“Provider=SQLOLEDB.1”Params=Params&“;DataSource=”&ComputerParams=Params&“;UserID=”&UserIDParams=Params&“;Password=”&PasswordParams=Params&“;InitialCatalog=”&DbSetconn=Server.CreateObject(“ADODB.Connection”
8、)conn.OpenParamsSetGetSQLServerConnection=connEndFunctionFunctionGetSQLServerStaticRecordset(conn,source)DimrsSetrs=Server.CreateObject(“ADODB.Recordset”)rs.Opensource,conn,3,2SetGetSQLServerStaticRecordset=rsEndFunction%>
此文档下载收益归作者所有