程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> ASP編程 >> 關於ASP編程 >> asp+access sql insert into select表復制

asp+access sql insert into select表復制

編輯:關於ASP編程

    這裡是把一個同的數據一次性保存到另一個表,用的是sql insert into  select另一張同結構的新表

    sub append()
    call opendb()
    dim zsql,zdysql
    zsql="insert into zdgz select title,s_name,user_from,image,content,send_date,isture from zdy "
     conn.execute(zsql)
     if err=0 then
      response.write("<br><hr>")
     response.write("<font  class=style1 >Data successful merger</font><hr><br>")
     conn.execute("delete * from zdy")
     else
      response.write("<br><hr><br>")
     response.write("<font  class=style1>If you are repeatedly running a home, data merge successfully.If you are running the first page, the data failed merger.</font><hr><br><br><br><br><br><br><p></p>")
     end if
    end sub

    數據連接代碼

    sub opendb()
    set rs=server.CreateObject("adodb.recordset")
    set conn=server.CreateObject("adodb.connection")
    conn.connectionstring="provider=microsoft.jet.oledb.4.0; data source="&server.mappath("datasource/hhinfo.mdb")
    conn.open
    end sub


     

    1. 上一頁:
    2. 下一頁:
    Copyright © 程式師世界 All Rights Reserved