SQL語句中 int 溢出 + Asp語句中 Long 溢出

來源:互聯網
上載者:User

標籤:

晚上5點多,同事在QQ告訴我,一個使用者向他反應,在他登入的時候顯示錯誤資訊,我們在管理平台查看該使用者的基本資料時,也顯示錯誤資訊。

經過初步分析,原來是在執行 SQL語句的時候發生Int溢出:

sql = "select sum(fileSize) as fsTotal from pic where userID = 1632"

本來這段SQL是用來取得一個使用者之前上傳的所有檔案大小的合計數。

fileSize 欄位類型 int

當使用者上傳的檔案累計大小超過 2G(2147483648位元組),再執行 sum(fileSize) 就會發生Int溢出。

找到問題的原因後,開始修改 sql語句:

sql = "select sum(cast(fileSize as bigint)) as fsTotal from pic where userID = 1632"

修改後,再測試發現還是有錯誤,不過這個時候的錯誤不是因為這段SQL,而是來自 asp 的 long 溢出。

sql = "select sum(cast(fileSize as bigint)) as fsTotal from pic where userID = 1632"
set re=conn.execute(sql)
if not re.eof then
    fsTotal = re.fields("fsTotal ")
    fsTotal = fsTotal / 1024 / 1024 ‘轉換成MB - 發生 long 溢出
end if

修改代碼:

fsTotal = re.fields("fsTotal ")
fsTotal = cdbl(fsTotal ) ‘先轉換成 double型,再進行下一步的操作
fsTotal = fsTotal / 1024 / 1024 ‘轉換成MB

-----------------------------------------------------------------------------------------------------------

SQL Server,int類型值最大2147483647(2^31 - 1)
ASP,Long (長整型) 4 個位元組 -2,147,483,648 到 2,147,483,647

 

2010-11-03

SQL語句中 int 溢出 + Asp語句中 Long 溢出

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.