ASP 資料庫操作語句

2021-04-06 23:09:16 字數 1689 閱讀 4221

1. 連線資料庫

2. 插入資料

3. 更新資料

4. 刪除資料

4. 刪除資料

<% '刪除資料

set rsdelete=server.createobject("adodb.connection")

rsdelete.open mm_conn_string

'注意, 輸入為數字不能加單引號

sql= "delete from article where articleid in(3263, 3262, 3261)" '刪除 id 為 3263, 3262, 3261 的文章

rsdelete.execute(sql)

rsdelete.close

set rsdelete=nothing

response.redirect("../index.asp") '返回首頁

%>

3. 更新資料

<% '更新資料

set rsupdate=server.createobject("adodb.connection")

rsupdate.open mm_conn_string

'數字不加單引號, 字元加, 日期加井號

sql= "update article set classid="&classid_&", nclassid="&nclassid_&", writer='"&writer_&"', email='"&email_&"', www='"&www_&"', url='"&url_&"', title='"&title_&"', content='"&content_&"' where articleid="&request("articleid")

rsupdate.execute(sql)

rsupdate.close

set rsupdate=nothing

%>

2. 插入資料

<% '插入資料

set rsinsert = server.createobject("adodb.connection")

rsinsert.open mm_conn_string '資料庫連線字串

'注意單引號的使用

sql = "insert into article (classid,nclassid,title,content )  values ("&classid_&","&nclassid_&",'"&title_&"','"&content_&"' ) " '選擇列, 並插入資料

rsinsert.execute(sql) '執行資料庫插入語句

rsinsert.close

set rsinsert=nothing

%>

1. 連線資料庫

<% '連線資料庫

set rs=server.createobject("adodb.recordset") '建立 rs 資料查詢

rs.open "select * from article" '資料查詢語句

response.write rs("title") '簡單讀出資料

rs.close '關閉 rs 連線

set rs=nothing

%>

asp寫入資料庫

客戶輸入部分:luo123a.htm

<%'asp寫入資料庫部分:http://www.3ttt.cn/luo123a.asp%

asp寫入資料庫

ASP連線MSSQL資料庫語句

asp與mssql 2012 企業版連線字串 connstr provider sqloledb data source 127.0.0.1 initial catalog westrac user id sa pwd ssddddhzx asp與mssql 2008 企業版連線字串 connstr...

asp資料庫操作類

class quickdb private conn,connstr private sqldatabasename,sqlpassword,sqlusername,sqllocalname,sqlnowstring public rs private sub class initialize sq...

資料庫操作語句

mysql分頁limit用法 limit後的第一個引數是輸出記錄的初始位置,第二個引數偏移量。如 select from tables limit 10,3 返回的就是11到13,3條資料。如果只給定一個引數,它表示返回最大的記錄行數目 select from table limit 5 檢索前 5...

資料庫操作語句

1 檢視當前資料庫版本資訊 select from product component version select from v version 2 授權與取消 grant 許可權 如sysdba to 使用者名稱 revoke 許可權 如sysdba from 使用者名稱 3 檢視資料庫中哪些使...

資料庫操作語句

1 建立資料庫 命令 create database 資料庫名 例如 建立一個名為test的資料庫 drop database life if exists test create database life character set utf8 use life set names gbk 2 顯...