我在Delphi 2010中为Firebird数据库编写了自己的DBX 4。该驱动程序是一个动态链接驱动程序,它工作正常与TsqlConnection。
最近我尝试使用Delphi 2010发布的DataExplorer.exe遇到错误:
"Attempted to read or write protected memory. This is often an indication that other memory is corrupt".
function DBXLoader_GetDriver(Count: TInt32; Names,Values: TWideStringArray; ErrorMessage: TDBXWideStringBuilder; out pDriver: TDBXDriverHandle): TDBXErrorCode; stdcall;
调试此方法时,Names和Values参数包含损坏的值。我不知道是什么原因造成的。也许DataExplorer.exe有一些内存管理器问题(.net问题?)
经过一番试错,我尝试将方法改为:
type TWideStringArray2 = array of PChar; function DBXLoader_GetDriver(Count: TInt32; Names,Values: TWideStringArray2; ErrorMessage: TDBXWideStringBuilder; out pDriver: TDBXDriverHandle): TDBXErrorCode; stdcall;
"Attempted to read or write protected memory. This is often an indication that other memory is corrupt".
你有什么想法可能是什么原因的问题?
解决方法
看起来你有一些内存分配问题。您是否使用SimpleShareMem finalualy?
http://docwiki.embarcadero.com/CodeExamples/en/SimpleShareMem_Sample – 介绍如何使用它。
http://www.codexterity.com/memmgr.htm – 还包含一些关于内存分配的见解,但使用FastSharemem模块的旧版本。