首页 > 网站 > 建站经验 > 正文

ASP编程常用的代!码

2019-11-02 15:12:45
字体:
来源:转载
供稿:网友

 ASP编程常用的代码


--------------------------------------------------------------------------------

1. ASP与Access数据库连接:

<% 
dim conn,mdbfile 
mdbfile=server.mappath("数据库名称.mdb") 
set conn=server.createobject("adodb.connection") 
conn.open "driver={microsoft access driver (*.mdb)};uid=admin;pwd=数据库密码;dbq="&mdbfile 
%>


2. ASP与SQL数据库连接:

<% 
dim conn 
set conn=server.createobject("ADODB.connection") 
con.open "PROVIDER=SQLOLEDB;DATA SOURCE=SQL服务器名称或IP地址;UID=sa;PWD=数据库密码;DATABASE=数据库名称 
%>

建立记录集对象:

set rs=server.createobject("adodb.recordset") 
rs.open SQL语句,conn,3,2

 

3. SQL常用命令使用方法:

(1) 数据记录筛选:

sql="select * from 数据表 where 字段名=字段值 order by 字段名 " 
sql="select * from 数据表 where 字段名 like ‘%字段值%‘ order by 字段名 " 
sql="select top 10 * from 数据表 where 字段

1905电影网[www.aikan.tv/special/1905dianyingwang/]
名 order by 字段名 " 
sql="select * from 数据表 where 字段名 in (‘值1‘,‘值2‘,‘值3‘)" 
sql="select * from 数据表 where 字段名 between 值1 and 值2"

(2) 更新数据记录:

sql="update 数据表 set 字段名=字段值 where 条件表达式" 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表