|
<< Click to Display Table of Contents >> Delphi Examples: DbiCloseSession |
![]() ![]()
|
Close the current session.
Delphi users should use TSession.Close rather than directly calling dbiCloseSession. The method TSession.Close is defined as:
procedure TSession.Close;
The following code closes TSession Session:
Session.Close;
Close the session associated with the handle.
Most Delphi users should use Session.Close or the TSession component. This example uses the following input:
DbiCloseSession(hSes);
procedure fDbiCloseSession(hTmpSes: hDBISes);
begin
Check(DbiCloseSession(hTmpSes));
end;