Advertisement
TLama

Untitled

Nov 14th, 2014
378
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Delphi 0.25 KB | None | 0 0
  1. // assuming FDConnection is a connection for FDQuery
  2. FDConnection.Params.Add('DriverID=SQLite');
  3. FDConnection.Params.Add('Database=C:\MyData.db');
  4.  
  5. FDQuery.Close;
  6. FDQuery.SQL.Text := 'CREATE TABLE MyTable (Col1 REAL, Col2 TIME)';
  7. FDQuery.ExecSQL;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement