|
分類:[.NET 全般]
あまりにも初歩的なことで大変申し訳ありませんが、
力を貸していただきたく投稿しました。
やりたいこと:DBをUPDATEで更新をしたい
環境
OS:Windows XP PRO
SQL Server 2005
****************************
〜省略
<% On Error Resume Next
name = Request.Cookies("name")
id = Request.Cookies("id")
pro_id = Request.Cookies("pro_id")
full_name = Request.Cookies("full_name")
project_name = Request.Cookies("project_name")
report_date = Request.Cookies("report_date")
report_id = Request.Cookies("report_id")
operation_time = Request.Cookies("operation_time")
work_time = Request.Cookies("work_time")
wtrbl_time = Request.Cookies("wtrbl_time")
topics = Request.Cookies("topics")
progress = Request.Cookies("progress")
troublef = Request.Cookies("troublef")
trouble = Request.Cookies("trouble")
figure1 = Request.Cookies("figure1")
figure2 = Request.Cookies("figure2")
figure3 = Request.Cookies("figure3")
text1 = Request.Cookies("text1")
text2 = Request.Cookies("text2")
text3 = Request.Cookies("text3")
adcn.Open "pubs", "sa", ""
adcd.ActiveConnection = adcn
Set adpm = adcd.CreateParameter("user_name",129)
adpm.Value = user_name
adpm.Size = Len(adpm.Value)
adcd.Parameters.Append adpm
Dim sql_up
sql_up = "update [QA2].[dbo].[report] set [pro_id] = '" & pro_id & "',[date] = '" & report_date & "',[user_id] = '" & id & "',[operation] = '" & operation_time & "',[work_flow] = '" & work_time & "',[wtrbl] = '" & wtrbl_time & "',[topics] = '" & topics & "',[progress] = '" & progress & "',[trouble_figure] = '" & troublef & "',[trouble] = '" & trouble & "',[figure1] = '" & figure1 & "',[figure2] = '" & figure2 & "',[figure3] = '" & figure3 & "',[text1] = '" & text1 & "',[text2] = '" & text2 & "',[text3] = '" & text3 & "' WHERE [report_id] = '" & report_id & "'"
adcn.Execute sql_up
adrs.Open adcd, ,3,1,1
adrs.Close
adcn.Close
%>
〜省略
****************************
Cookieからデータを取得をしていることは確認しているので、
ASPでのUPDATE文の記述に問題がありそうな気がしているのですが…
ご指導ご鞭撻のほどよろしくお願いします。
|