Guest User

Untitled

a guest
Jun 18th, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. Var
  2. Connection : TZConnection;
  3. begin
  4. Connection:= TZConnection.Create(Nil);
  5. Connection.HostName:= '127.0.0.1';
  6. Connection.Database:= 'RMS';
  7. Connection.Password:= '1111';
  8. Connection.User:= 'root';
  9. Connection.Port:= 3306;
  10. Connection.Protocol:= 'mysql-4.1';
  11. Connection.LoginPrompt:= False;
  12. Connection.TransactIsolationLevel:= tiReadCommitted;
Add Comment
Please, Sign In to add comment