Guest User

Untitled

a guest
Apr 10th, 2018
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. PQConnection1.Close; //just in case.. se crasha :D
  2. PQConnection1.UserName:=user;
  3. PQConnection1.Password:=password;
  4. // SQLTransaction1.DataBase:=SQLite3Connection1;
  5. // SQLQuery1.Database:=SQLite3Connection1;
  6. try
  7. PQConnection1.Open;
  8. PQConnection1.ExecuteDirect('set search_path to cartografia');
  9. except
  10. on Exception do
  11. begin
  12. MessageDlg('Errore nella connessione al DB',mtError, mbOKCancel, 0);
  13. end;
  14. // SQLite3Connection1.Open;
  15. // Sqlquery1.SQL.Clear;
  16. end;
Add Comment
Please, Sign In to add comment