ASP クラシックを使用して Web アプリを作成しており、Oracle データベースの値を更新しようとしています。これが私がこれまでに持っているものです。
<script>
function getUpdateHTML()
{
var lockoutcheck;
if (document.getElementById("cellRollLockoutYN").checked)
{
lockoutcheck = "'Y'";
}
else
{
lockoutcheck = "'N'";
}
var updatestring = "RollInventoryViewDev.asp?updatelockout=";
updatestring = updatestring + lockoutcheck + "&updatepatterndepth=";
updatestring = updatestring + document.getElementById("cellProductPatternDepthAvg").value + "&";
updatestring = updatestring + "action=update&sort=roll_id&sortdir=<%=intSortDir%>&id=<%=intRollID%>&iddt=<%=StrRollIdDt%>&seqnum=<%=intRollSeqNum%>&findesc=<%=strRollFinishDescription%>&fincd=<%=strRollFinishCD%>&diam=<%=dblRollDiameter%>&crown=<%=dblRollCrown%>&crownaim=<%=dblRollCrownAim%>&prosrough=<%=intRollProsRoughness%>&peaksrough=<%=intRollPeaksRoughness%>&hardness=<%=intRollHardness%>&metalcd=<%=strRollMetalCD%>&rolltype=<%=strRollType%>&lockout=<%=chrRollLockoutYN%>&depthavg=<%=dblProductPatternDepthAvg%>";
<!--alert("Attempting to Update Record with Lockout: " + lockoutcheck + " and Pattern Depth: " + document.getElementById("cellProductPatternDepthAvg").value);-->
window.open(updatestring,"_self")
}
</script>
<%
'If update selected, then update information
If Request.QueryString("action") = "update" Then
sqlQry = "update tp07_roll_inventory_row set roll_lockout_yn = "&chrUpdateLockout&", product_pattern_depth_avg = "&dblUpdateDepthAvg&" where roll_id = "&intRollID&""%>
<script>alert("<%=sqlQry%>");</script>
<%
' Turn error handling on. If an error is generated, our program will continue to execute and
' the error code will be stored in Err.number.
'On Error Resume Next
' Execute SQL code
Set RS = dbConn.Execute(sqlQry, RowsAffected)
' If an error occured then construct an error message to display to the user
If err<>0 then
message="Unable to Perform Update: "
for each objErr in dbConn.Errors
message = message & objErr.Description & "<br>"
next
' Set message color to red to indicate failure
messageColor = "#DD2222"
' If there was no error then generate a "success" message to display to the user
Else
message="Update Successful: " & rowsAffected & " row(s) updated."
' Set message color to green to indicate success
messageColor = "#22DD22"
End If
Response.write(message)
End If
%>
次のようなSQLクエリを生成し、SQLクエリでupdate tp07_roll_inventory_row set roll_lockout_yn = 'N', product_pattern_depth_avg = 2.6 where roll_id = 8502;
警告し(正しくフォーマットされていることがわかります)、エラー処理をオンにしてから実行します。
更新に失敗した場合は、「更新を実行できません:」とすべてのエラー コードが出力されます。
現在、「更新を実行できません:」と表示されますが、エラー コードは表示されません。そして、それは間違いなく更新に失敗しています。
編集:更新をクリックした後に新しい URL を生成する JavaScript を追加したので、ここに問題がある可能性があります。
もともと、このスクリプトは下にありましたが、上に移動してコメントアウトしたので、Object required: ''
エラー時、Set RS = dbConn.Execute(sqlQry, RowsAffected)
行にエラーがあります
編集:これは、そのデータベース接続を開くサブルーチンと、接続を開いてデータベースにデータを照会してテーブルを埋めるコードです
%>
<%Sub dbConnect()
Set dbConn=Server.CreateObject("ADODB.Connection")
dbConn.Open "Provider=MSDAORA.1;Password=database;User ID=dba_prd;Data Source=devtm2tcp"
End Sub
Sub dbDisconnect()
dbConn.Close
Set dbConn = Nothing
End Sub
%>
<% '
boolDetailTable = false
Call dbConnect()
sqlQry = "SELECT * FROM TP07_ROLL_INVENTORY_ROW"
if Len(strSort) > 0 then
sqlQry = sqlQry + " ORDER BY " & strSort
if intSortDir <> "1" then
sqlQry = sqlQry + " DESC"
end if
end if
getRS sqlQry
%>