asp編程常用的代碼
來源:易賢網(wǎng) 閱讀:1214 次 日期:2015-01-13 16:19:43
溫馨提示:易賢網(wǎng)小編為您整理了“asp編程常用的代碼”,方便廣大網(wǎng)友查閱!

asp編程常用的代碼

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

1. asp與access數(shù)據(jù)庫連接:

<%

dim conn,mdbfile

mdbfile=server.mappath(數(shù)據(jù)庫名稱.mdb)

set conn=server.createobject(adodb.connection)

conn.open driver={microsoft access driver (*.mdb)};uid=admin;pwd=數(shù)據(jù)庫密碼;dbq=&mdbfile

%>

2. asp與sql數(shù)據(jù)庫連接:

<%

dim conn

set conn=server.createobject(adodb.connection)

con.open provider=sqloledb;data source=sql服務器名稱或ip地址;uid=sa;pwd=數(shù)據(jù)庫密碼;database=數(shù)據(jù)庫名稱

%>

建立記錄集對象:

set rs=server.createobject(adodb.recordset)

rs.open sql語句,conn,3,2

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

(1) 數(shù)據(jù)記錄篩選:

sql=select * from 數(shù)據(jù)表 where 字段名=字段值 order by 字段名

sql=select * from 數(shù)據(jù)表 where 字段名 like ‘%字段值%‘ order by 字段名

sql=select top 10 * from 數(shù)據(jù)表 where 字段名 order by 字段名

sql=select * from 數(shù)據(jù)表 where 字段名 in (‘值1‘,‘值2‘,‘值3‘)

sql=select * from 數(shù)據(jù)表 where 字段名 between 值1 and 值2

(2) 更新數(shù)據(jù)記錄:

sql=update 數(shù)據(jù)表 set 字段名=字段值 where 條件表達式

sql=update 數(shù)據(jù)表 set 字段1=值1,字段2=值2 …… 字段n=值n where 條件表達式

(3) 刪除數(shù)據(jù)記錄:

sql=delete from 數(shù)據(jù)表 where 條件表達式

sql=delete from 數(shù)據(jù)表 (將數(shù)據(jù)表所有記錄刪除)

(4) 添加數(shù)據(jù)記錄:

sql=insert into 數(shù)據(jù)表 (字段1,字段2,字段3 …) valuess (值1,值2,值3 …)

sql=insert into 目標數(shù)據(jù)表 select * from 源數(shù)據(jù)表 (把源數(shù)據(jù)表的記錄添加到目標數(shù)據(jù)表)

(5) 數(shù)據(jù)記錄統(tǒng)計函數(shù):

avg(字段名) 得出一個表格欄平均值

count(*|字段名) 對數(shù)據(jù)行數(shù)的統(tǒng)計或?qū)δ骋粰谟兄档臄?shù)據(jù)行數(shù)統(tǒng)計

max(字段名) 取得一個表格欄最大的值

min(字段名) 取得一個表格欄最小的值

sum(字段名) 把數(shù)據(jù)欄的值相加

引用以上函數(shù)的方法:

sql=select sum(字段名) as 別名 from 數(shù)據(jù)表 where 條件表達式

set rs=conn.excute(sql)

用 rs(別名) 獲取統(tǒng)的計值,其它函數(shù)運用同上。

(5) 數(shù)據(jù)表的建立和刪除:

create table 數(shù)據(jù)表名稱(字段1 類型1(長度),字段2 類型2(長度) …… )

例:create table tab01(name varchar(50),datetime default now())

drop table 數(shù)據(jù)表名稱 (永久性刪除一個數(shù)據(jù)表)

(6) 記錄集對象的方法:

rs.movenext 將記錄指針從當前的位置向下移一行

rs.moveprevious 將記錄指針從當前的位置向上移一行

rs.movefirst 將記錄指針移到數(shù)據(jù)表第一行

rs.movelast 將記錄指針移到數(shù)據(jù)表最后一行

rs.absoluteposition=n 將記錄指針移到數(shù)據(jù)表第n行

rs.absolutepage=n 將記錄指針移到第n頁的第一行

rs.pagesize=n 設置每頁為n條記錄

rs.pagecount 根據(jù) pagesize 的設置返回總頁數(shù)

rs.recordcount 返回記錄總數(shù)

rs.bof 返回記錄指針是否超出數(shù)據(jù)表首端,true表示是,false為否

rs.eof 返回記錄指針是否超出數(shù)據(jù)表末端,true表示是,false為否

rs.delete 刪除當前記錄,但記錄指針不會向下移動

rs.addnew 添加記錄到數(shù)據(jù)表末端

rs.update 更新數(shù)據(jù)表記錄

判斷所填數(shù)據(jù)是數(shù)字型

if not isnumeric(request(字段名稱)) then

response.write 不是數(shù)字

else

response.write 數(shù)字

end if

更多信息請查看IT技術專欄

更多信息請查看網(wǎng)絡編程
易賢網(wǎng)手機網(wǎng)站地址:asp編程常用的代碼

2025國考·省考課程試聽報名

  • 報班類型
  • 姓名
  • 手機號
  • 驗證碼
關于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡要咨詢 | 簡要咨詢須知 | 新媒體/短視頻平臺 | 手機站點 | 投訴建議
工業(yè)和信息化部備案號:滇ICP備2023014141號-1 云南省教育廳備案號:云教ICP備0901021 滇公網(wǎng)安備53010202001879號 人力資源服務許可證:(云)人服證字(2023)第0102001523號
聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關注公眾號:hfpxwx
咨詢QQ:1093837350(9:00—18:00)版權(quán)所有:易賢網(wǎng)