請問如何對接資料庫,主要是下面紅色字型部份,另外下面動態**中的此部份換成下拉列表選擇倉庫。**中的**和條碼自動取上行的進貨價和條碼,但在**中也可以更改,表中的在表中上傳,上傳後回顯,然後可以在表中刪除
<%
if session("shiwei_username")="" then
%>
<%
response.end
end if
%>
<%
if fla1="0" and session("shiwei_id")<>"1" then
%>
<%
response.end
end if
%>
<%
if request("hid1")="ok" then
nowid_login=request("id_login")
nowid_payment=request("id_payment")
set rs_login=conn.execute("select * from login where id="&nowid_login)
nowid_gys=request("id_gys")
nowgys=""
set rs_gys=conn.execute("select * from gys where id="&nowid_gys)
if rs_gys.eof=false then nowgys=rs_gys("company")
set rs_bianhao=conn.execute("select * from buy order by id desc")
if rs_bianhao.eof then
nowbianhao=1000001
else
nowbianhao=1000001+rs_bianhao("id")
end if
totalshulian=0
totalprice2=0
for x=1 to maxproduit
nowku=request("ku"&x)
set rs_ku=conn.execute("select * from ku where id="&nowku)
nowhuohao=request("huohao"&x)
nowshulian=request("shulian"&x)
nowprice=request("price"&x)
if nowprice="" then
nowprice=0
end if
nowprice2=request("price2"&x)
if nowprice2="" then
nowprice2=0
end if
nowprice3=request("price3"&x)
if nowprice3="" then
nowprice3=0
end if
ddan=request("ddan")
wuliufee=request("wuliufee")
if nowhuohao<>"單擊選擇產品" and nowshulian<>"" then
set rs_produit=conn.execute("select * from produit where huohao='"&nowhuohao&"'")
beizhu=rs_produit("beizhu")
price2=rs_produit("price2")
price=rs_produit("price")
price3=rs_produit("price3")
set rs=server.createobject("adodb.recordset")
sql="select * from produit where huohao='"&nowhuohao&"' and id_ku="&nowku
rs.open sql,conn,1,3
if rs.eof then
rs.addnew
rs("id_bigclass")=rs_produit("id_bigclass")
rs("id_smallclass")=rs_produit("id_smallclass")
rs("title")=rs_produit("title")
rs("huohao")=rs_produit("huohao")
rs("tiaoma")=rs_produit("tiaoma")
rs("id_ku")=nowku
rs("shulian")=nowshulian
rs("danwei")=rs_produit("danwei")
rs("price")=rs_produit("price")
rs("price2")=nowprice2
rs("price3")=rs_produit("price3")
rs("sekuan")=rs_produit("sekuan")
rs("guige")=rs_produit("guige")
rs("jingzhong")=rs_produit("jingzhong")
rs("zhuangxiangshu")=rs_produit("zhuangxiangshu")
rs("baojin")=rs_produit("baojin")
rs("class")=rs_produit("class")
rs("duihuan")=rs_produit("duihuan")
rs("tichen_type")=rs_produit("tichen_type")
rs("tichen")=rs_produit("tichen")
rs("photo")=rs_produit("photo")
rs("gys")=nowgys
rs("id_gys")=nowid_gys
rs("beizhu")=beizhu
else
rs("shulian")=rs("shulian")+nowshulian
rs("price2")=nowprice2
end if
rs.update
rs.close
sql="select bigclass from bigclass where id="&rs_produit("id_bigclass")
set rs_bigclass=conn.execute(sql)
sql="select smallclass from smallclass where id="&rs_produit("id_smallclass")
set rs_smallclass=conn.execute(sql)
if rs_smallclass.eof then
smallclass=""
else
smallclass=rs_smallclass(0)
end if
totalshulian=totalshulian+nowshulian
totalprice2=totalprice2+nowprice2*nowshulian
ddan=request("ddan")
wuliufee=request("wuliufee")
sql="insert into buy(ddan,wuliufee,id_payment,id_produit,bigclass,smallclass,title,huohao,tiaoma,id_ku,ku,shulian,sekuan,guige,jingzhong,zhuangxiangshu,id_login,login,type,selldate,price,price2,price3,photo,id_gys,gys,bianhao,beizhu) values('"&ddan&"','"&wuliufee&"',"&nowid_payment&","&rs_produit("id")&",'"&rs_bigclass(0)&"','"&smallclass&"','"&rs_produit("title")&"','"&nowhuohao&"','"&rs_produit("tiaoma")&"',"&rs_ku("id")&",'"&rs_ku("ku")&"',"&nowshulian&",'"&rs_produit("sekuan")&"','"&rs_produit("guige")&"','"&rs_produit("jingzhong")&"','"&rs_produit("zhuangxiangshu")&"',"&nowid_login&",'"&rs_login("username")&"',0,#"&date()&"#,'"&rs_produit("price")&"',"&nowprice2&",'"&rs_produit("price3")&"','"&rs_produit("photo")&"',"&nowid_gys&",'"&nowgys&"','"&nowbianhao&"','"&beizhu&"')"
conn.execute(sql)
end if
next
sql="insert into buy(ddan,wuliufee,id_payment,shulian,id_login,login,type,selldate,price,price2,price3,id_gys,gys,bianhao,zu) values('"&ddan&"','"&wuliufee&"',"&nowid_payment&","&totalshulian&","&nowid_login&",'"&rs_login("username")&"',0,#"&date()&"#,"&price&","&price2&","&price3&","&nowid_gys&",'"&nowgys&"','"&nowbianhao&"',true)"
conn.execute(sql)
%>
<%if dayin1="yes" then%>
<%end if%>
<%
end if
%>
資料庫中如何存入列舉型別的值
最近資料庫中要插入在程式中是列舉型別的值,在程式中插入可以用tostring 將列舉轉換為字串,但在取值的時候又會碰到是列舉的不能取,現在的問題是 1.能取的情況 是如何插入資料庫中的,什麼方法 sqlhelperlib.executenonquery sql,ps 2.不能取的情況 是什麼方法插入...
POI讀取資料,存入資料庫中
以這樣的office 為資料來源,poi處理資料,讀取表中資料,並寫入資料庫,並對當中存在空行的資料給出友好提示。office主要有03 和 07版本,區別不是很大。org.apache.poi poi3.9 org.apache.poi poi ooxml 3.9public class edus...
Java Web專案表單資料存入資料庫中文亂碼解決
題記 第一篇部落格,編輯器的很多功能還不熟悉,粗略寫寫,可能的看官們請見諒。背景 用struts spring hibernate整合乙個小專案,有關編碼的設定如下 1 jsp頁面的pageencoding設定沒問題,charset設定成utf 8,form表單為get方式 2 struts配置時沒...