GetProcedureSources Error
Posted: Fri 23 Nov 2007 18:55
I'm trying to read the stored procedure's source using the corelab's interbase dbxpress driver, but it always raises a exception:
'Access violation at address 02E1FC9C in module 'dbexpida40.dll'. Read of address 00000008'
I believe there's a problem in the driver.
Anyone can help me?
Thanks,
Daniel Dummer
'Access violation at address 02E1FC9C in module 'dbexpida40.dll'. Read of address 00000008'
Code: Select all
Dataset := TSQLDataSet.Create(nil);
With DataSet do
try
SQLConnection := FConnection;
DbxCommandType := TDBXCommandTypes.DbxMetaData;
CommandText := TDBXMetaDataCommandsEx.GetProcedureSources;
Active := True; // here raises the exception
.....
finally
Free;
end;
Anyone can help me?
Thanks,
Daniel Dummer