填充数据表时"System.AccessViolationException: Attempted to read or write protected memory"



使用 ASP.NET 4.51 和 VS 2013 时,我在尝试使用存储过程填充数据表时收到以下错误。

System.AccessViolationException: Attempted to read or write protected memory

我已经将错误追溯到以下内容:

Using myDT As New DAL.mbr_MediaComments.usrsp_mbr_MediaComments_CommentorsDataTable
    Using myTA As New DAL.mbr_MediaCommentsTableAdapters.usrsp_mbr_MediaComments_CommentorsTableAdapter
        myTA.Fill(myDT, toMbrID, mediaID) <------System.AccessViolationException: Attempted to read or write protected memory. This is often an indication that other memory is corrupt.

这是我的存储过程定义:

CREATE PROCEDURE [dbo].[usrsp_mbr_MediaComments_Commentors] 
-- Add the parameters for the stored procedure here
@mbrID int = 0,
@mediaID bigint = 0
AS
BEGIN
    //my query code
END

我发现了问题,错误是由以下原因引起的:

存储过程已将其中一个参数定义为 bigint

它应该是数据库表架构中定义的 int

我似乎将整数值传递给需要 Bigint 的表适配器存储过程会导致访问违规异常错误。

我希望这些信息对其他人有所帮助。

相关内容

最新更新