Package DE_EPAGES::WebInterfacePoolDB::API::Table::Host
interface for table Host
@EXPORT_OK |
Functions
- DeleteHost
- ExistsHost
- ExistsHostByName
- GetAllInfoHosts
- GetAllPKeyHosts
- GetInfoHost
- GetInfoHostByName
- GetInfoHostsByName
- GetInfoHostsBySiteID
- GetPKeyHostByName
- GetPKeyHostsByName
- GetPKeyHostsBySiteID
- InsertHost
- UpdateHost
DeleteHost
Deletes a(n) Host.
Syntax |
DeleteHost($HostID); DeleteHost($hHost); # if $hHost includes HostID |
Input |
|
ExistsHost
Returns true if the Host exists.
Syntax |
$exists = ExistsHost($HostID); |
Input |
|
Return |
|
ExistsHostByName
Returns true if a Host by alternate key Name exists.
Syntax |
$HostID = ExistsHostByName($Name); |
Input |
|
Return |
|
GetAllInfoHosts
Returns all objects of Host.
Syntax |
$ahHosts = GetAllInfoHosts(); |
Return |
|
GetAllPKeyHosts
Returns all Host identifiers.
Syntax |
$aHostIDs = GetAllPKeyHosts(); |
Return |
|
GetInfoHost
Returns the Host by identifier.
Syntax |
$hHost = GetInfoHost($HostID); |
Input |
|
Return |
|
GetInfoHostByName
Returns the object of Host by alternate key Name.
Syntax |
$hHost = GetInfoHostByName($Name); |
Input |
|
Return |
|
GetInfoHostsByName
Returns objects of Host by alternate key Name.
Syntax |
$ahHosts = GetInfoHostsByName($Name); |
Input |
|
Return |
|
GetInfoHostsBySiteID
Returns objects of Host by alternate key SiteID.
Syntax |
$ahHosts = GetInfoHostsBySiteID($SiteID); |
Input |
|
Return |
|
GetPKeyHostByName
Returns primary key of Host by alternate key Name.
Syntax |
$HostID = GetPKeyHostByName($Name); |
Input |
|
Return |
|
GetPKeyHostsByName
Returns primary keys of Host by alternate key Name.
Syntax |
$aKeys = GetPKeyHostsByName($Name); |
Input |
|
Return |
|
GetPKeyHostsBySiteID
Returns primary keys of Host by alternate key SiteID.
Syntax |
$aKeys = GetPKeyHostsBySiteID($SiteID); |
Input |
|
Return |
|
InsertHost
Creates an entry of Host.
Syntax |
$HostID = InsertHost($hHost); |
Input |
|
Return |
|
UpdateHost
Updates a(n) Host if any element was changed.
Syntax |
UpdateHost($HostID, $hHost); UpdateHost($hHost); # if $hHost includes HostID |
Input |
|
Return |
|