Port

<< Click to Display Table of Contents >>

Navigation:  Apollo VCL Components > Apollo VCL Component Reference > TApolloConnection > TApolloConnection Properties >

Port

Declaration

Port: Integer

Description

The Port number used by the Apollo Database Server application. This value is set using the Apollo Server Manager program.

 

image\tip.gif The Host, Port, and Active properties are not used when connecting to Apollo SQL with TApolloQuery (with AccessMethod set to amLocal).

Delphi Example

// Connect to remote server

with ApolloConnection1 do

begin

 Host := '127.0.0.1'; 

 Port := 8121;

 Active := True; 

end;

See Also

Host