Host

<< Click to Display Table of Contents >>

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

Host

Declaration

Host: String

Description

The Host IP address (ex: 127.0.0.1) or domain name (eg: www.yourserver.com) where the Apollo Database Server is located. This number will be displayed on the status bar on the bottom of the Apollo Database Server's main window.

 

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

Port