Merhaba arkadaşlar,
Xe8 kullanıyorum. SQL Lite dosyamı create edip, FireDAC ile bağlantı yaptım ve dosyamı deployment kısmında assest\internal pathine deploy ettim.
fakat " Object factory for class is missing. To register it, you can drop component. TFDGUIxWaitCursor into your project hatası almaktayım.
FDConnection1.Params.Values['Database'] := System.IOUtils.TPath.GetDocumentsPath + PathDelim + 'data.sdb';
FDConnection1.LoginPrompt:=false;
FDConnection1.Connected:=true;
With FDQuery1 do
begin
Active := False;
Connection := FDConnection1;
SQL.Clear;
SQL.Add( 'select BIRIM,TELEFON from phone');
Active := True;
end;
SQL Lite Hatası ???
-
- Üye
- Mesajlar: 16
- Kayıt: 01 Mar 2014 09:01
Re: SQL Lite Hatası ???
Buldum. Uses kısmına FireDAC.FMXUI.Wait eklemek lazımmış... 
