Package DE_EPAGES::WebInterfacePoolDB::API::Table::Pool
interface for table Pool
@EXPORT_OK |
Functions
- DeletePool
- ExistsPool
- ExistsPoolByName
- GetAllInfoPools
- GetAllPKeyPools
- GetInfoPool
- GetInfoPoolByName
- GetInfoPoolsByName
- GetPKeyPoolByName
- GetPKeyPoolsByName
- InsertPool
- UpdatePool
DeletePool
Deletes a(n) Pool.
Syntax |
DeletePool($PoolID); DeletePool($hPool); # if $hPool includes PoolID |
Input |
|
ExistsPool
Returns true if the Pool exists.
Syntax |
$exists = ExistsPool($PoolID); |
Input |
|
Return |
|
ExistsPoolByName
Returns true if a Pool by alternate key Name exists.
Syntax |
$Exists = ExistsPoolByName($Name); |
Input |
|
Return |
|
GetAllInfoPools
Returns all objects of Pool.
Syntax |
$ahPools = GetAllInfoPools(); |
Return |
|
GetAllPKeyPools
Returns all Pool identifiers.
Syntax |
$aPoolIDs = GetAllPKeyPools(); |
Return |
|
GetInfoPool
Returns the Pool by identifier.
Syntax |
$hPool = GetInfoPool($PoolID); |
Input |
|
Return |
|
GetInfoPoolByName
Returns the object of Pool by alternate key Name.
Syntax |
$hPool = GetInfoPoolByName($Name); |
Input |
|
Return |
|
GetInfoPoolsByName
Returns objects of Pool by alternate key Name.
Syntax |
$ahPools = GetInfoPoolsByName($Name); |
Input |
|
Return |
|
GetPKeyPoolByName
Returns primary key of Pool by alternate key Name.
Syntax |
$PoolID = GetPKeyPoolByName($Name); |
Input |
|
Return |
|
GetPKeyPoolsByName
Returns primary keys of Pool by alternate key Name.
Syntax |
$aKeys = GetPKeyPoolsByName($Name); |
Input |
|
Return |
|
InsertPool
Creates an entry of Pool.
Syntax |
$PoolID = InsertPool($hPool); |
Input |
|
Return |
|
UpdatePool
Updates a(n) Pool if any element was changed.
Syntax |
UpdatePool($PoolID, $hPool); UpdatePool($hPool); # if $hPool includes PoolID |
Input |
|