Hello
I am wondering what is the difference between Open and Connect Method fo TUniConnection object
I have the same question for difference between Close and Disconnect.
Thanks
Difference between Open and Connect Method on TUniConnection
-
testpresta
- Posts: 32
- Joined: Sat 07 Jun 2014 19:41
Re: Difference between Open and Connect Method on TUniConnection
Hello,
There is no difference between connection establishing methods:
Eventually, the same method SetConnected is called. These methods were added for compatibility when migrating from other components to UniDAC.
There is no difference between connection establishing methods:
Code: Select all
UniConnection.Connected := True;
UniConnection.Open;
UniConnection.Connect;
UniConnection1.Connected := False;
UniConnection1.Close;
UniConnection1.Disconnect;