ASP初學(xué)者常犯的幾個(gè)錯(cuò)誤
當(dāng)前位置:點(diǎn)晴教程→知識(shí)管理交流
→『 技術(shù)文檔交流 』
1.記錄集關(guān)閉之前再次打開: ------------------------------------ sql="select * from test" rs.open sql,conn,1,1 if not rs.eof then dim myName myName=rs("name") end if sql="select * from myBook" rs.open sql,conn,1,1 ------------------------------------- 解決:在第二次rs.open之前先關(guān)閉 rs.close 或 set rs1=server.createobject rs1.open sql,conn,1,1 2,用SQL關(guān)鍵字做表名或字段名 ------------------------------------- sql="select * from user" rs.open sql,conn,1,1 ------------------------------------- user為sql關(guān)鍵字 解決:改為 sql="select * from [user]" 3,用鎖定方式去進(jìn)行update ------------------------------------- sql="select * from [user]" rs.open sql,conn,1,1 rs.addnew 或 rs("userName")="aa" rs.update ------------------------------------- 當(dāng)前記錄集的打開方式為只讀 解決: 改為 rs.open sql,conn,1,3 4,在查詢語(yǔ)句中采用的對(duì)比字段值與字段類型不符 ----------------------------------------- sql="select * from [user] where id='" & myID & "'" rs.open sql,conn,1,1 ----------------------------------------- 假設(shè)表中設(shè)計(jì)ID為數(shù)字型,那么些時(shí)出錯(cuò)。 解決: sql="select * from [user] where id=" & myID 5,未檢查變量值而出錯(cuò) ----------------------------------------- sql="select * from [user] where id=" & myID rs.open sql,conn,1,1 ----------------------------------------- 假設(shè)myID變量此時(shí)值為null,那么sql將成為 sql="select * from [user] where id=" 解決: 在前面加上 if isnull(myID) then 出錯(cuò)提示 6,未檢查變量值類型而出錯(cuò) ----------------------------------------- sql="select * from [user] where id=" & myID rs.open sql,conn,1,1 ----------------------------------------- 假設(shè)id為數(shù)字型,myID變量此時(shí)值不為null,但為字符,比如myID此時(shí)為"aa" 那么sql將成為 sql="select * from [user] where id=aa" 解決: 在前面加上 if isnumeric(myID)=false then 出錯(cuò)提示 這也可以有效防止 sql injection 漏洞攻擊。 7,由于數(shù)據(jù)庫(kù)文件所在目錄的NTFS權(quán)限而引起的'不能更新。數(shù)據(jù)庫(kù)或?qū)ο鬄橹蛔x"錯(cuò)誤。
說(shuō)明: WIN2K系統(tǒng)延續(xù)了WINNT系統(tǒng)的NTFS權(quán)限。 對(duì)于系統(tǒng)中的文夾都有默認(rèn)的安全設(shè)置。 而通過(guò)HTTP對(duì)WWW訪問(wèn)時(shí)的系統(tǒng)默認(rèn)用戶是 iusr_計(jì)算機(jī)名 用戶 ,它屬于guest組。 當(dāng)通過(guò)HTTP訪問(wèn)時(shí),可以ASP或JSP,也或是PHP或.NET程序?qū)?shù)據(jù)進(jìn)行修改操作: 比如: 當(dāng)打開某一個(gè)文章時(shí),程序設(shè)定,文章的閱讀次數(shù)=原閱讀次數(shù)+1 執(zhí)行 conn.execute("update arts set clicks=clicks+1 where id=n") 語(yǔ)句時(shí),如果 iusr_計(jì)算機(jī)名 用戶沒(méi)有對(duì)數(shù)據(jù)庫(kù)的寫權(quán)限時(shí),就會(huì)出錯(cuò). 解決方法: 找到數(shù)據(jù)庫(kù)所在目錄 右鍵》屬性》安全選項(xiàng)卡》設(shè)置 iusr_計(jì)算機(jī)名 用戶的寫權(quán)限(當(dāng)然,也可以是everyone) 該文章在 2011/2/16 10:17:57 編輯過(guò) |
關(guān)鍵字查詢
相關(guān)文章
正在查詢... |