dnf聊天框闪屏:这个delphi的错误是什么意思啊,谢谢各位大大了,急!!

来源:百度文库 编辑:高校问答 时间:2024/05/09 07:44:08
debugger exception notification
project project1.exe raised exception class EDBEngineError with message 'cannot find Engine configuration file.'.process stoped.use step or run to continue.
ok help
procedure TForm1.FormCreate(Sender: TObject);
begin
session.GetDatabaseNames(combobox1.Items);
combobox1.text:='dbdemos';
combobox1change(self);
listbox1.itemindex :=0;
listbox1click(self);
end;

procedure TForm1.ComboBox1Change(Sender: TObject);
begin
session.GetTableNames(combobox1.text,' ',true,false,listbox1.Items);
end;

procedure TForm1.ListBox1Click(Sender: TObject);
begin
table1.Close;
table1.DatabaseName:=combobox1.text;
table1.tablename :=listbox1.Items[listbox1.itemindex];
table1.Open;
end;

end.

cannot find Engine configuration file
意为:无法找到引擎定义文件

猜测:可能跟配置有关。