Advantage TDataSet Descendant
Determines if the Advantage server is loaded.
function AdsIsServerLoaded( strServer : String ) : Boolean;
|
strServer |
String containing drive letter or server name to check. If the application uses a server name as the parameter, it must include the share name as well. For example, use "\\server\share" or "server\vol:". |
AdsIsServerLoaded is used to check if an Advantage server is loaded on the specified machine. If AdsIsServerLoaded returns non-zero, this results in a connection to the server. If AdsIsServerLoaded returns 0, no server is loaded.
bIsLoaded := AdsTable1.AdsIsServerLoaded( ‘x:\data’ );
{ bIsLoaded equals TRUE if the Advantage Database Server is loaded on that remote server }
None.