Topic: Error on closing application

Great component set. Thanks!

When I run a simple app it executes correctly (code below) but when I close it gives "Project project1 raised exception class 'External: SIGSEGV'." I'm using Lazarus 0.9.31 in Ubuntu 10.10.


procedure TForm1.Button1Click(Sender: TObject);
begin
     with SqlitePassDataset1 do begin
          SQL.Text:= 'select chemid,name from chem_info where chemid= 3982';
          Open;
          showmessage(FieldByName('name').AsString );
          Close;
     end;
end;

Last edited by dkjMusic (2011-01-19 13:09:27)

Re: Error on closing application

I 'll try to have a look. I know it's difficult to catch bug with lazarus. Could you step through the code to get more info on this error ?