asp+access sql insert into select表復(fù)制_ASP圖文說(shuō)明教程
發(fā)表時(shí)間:2023-08-10 來(lái)源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]這里是把一個(gè)同的數(shù)據(jù)一次性保存到另一個(gè)表,用的是sql insert into select另一張同結(jié)構(gòu)的新表sub append()call opendb()dim zsql,zdysqlzsq...
這里是把一個(gè)同的數(shù)據(jù)一次性保存到另一個(gè)表,用的是sql insert into select另一張同結(jié)構(gòu)的新表
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
數(shù)據(jù)連接代碼
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
Microsoft Access在很多地方得到廣泛使用,例如小型企業(yè),大公司的部門。