Package DE_EPAGES::WebInterfacePoolDB::API::Table::Store
interface for table Store
@EXPORT_OK |
Functions
- DeleteStore
- ExistsStore
- ExistsStoreByName
- GetAllInfoStores
- GetAllPKeyStores
- GetInfoStore
- GetInfoStoreByName
- GetInfoStoresByName
- GetInfoStoresByPoolID
- GetPKeyStoreByName
- GetPKeyStoresByName
- GetPKeyStoresByPoolID
- InsertStore
- UpdateStore
DeleteStore
Deletes a(n) Store.
Syntax |
DeleteStore($StoreID); DeleteStore($hStore); # if $hStore includes StoreID |
Input |
|
ExistsStore
Returns true if the Store exists.
Syntax |
$exists = ExistsStore($StoreID); |
Input |
|
Return |
|
ExistsStoreByName
Returns true if a Store by alternate key Name exists.
Syntax |
$StoreID = ExistsStoreByName($Name); |
Input |
|
Return |
|
GetAllInfoStores
Returns all objects of Store.
Syntax |
$ahStores = GetAllInfoStores(); |
Return |
|
GetAllPKeyStores
Returns all Store identifiers.
Syntax |
$aStoreIDs = GetAllPKeyStores(); |
Return |
|
GetInfoStore
Returns the Store by identifier.
Syntax |
$hStore = GetInfoStore($StoreID); |
Input |
|
Return |
|
GetInfoStoreByName
Returns the object of Store by alternate key Name.
Syntax |
$hStore = GetInfoStoreByName($Name); |
Input |
|
Return |
|
GetInfoStoresByName
Returns objects of Store by alternate key Name.
Syntax |
$ahStores = GetInfoStoresByName($Name); |
Input |
|
Return |
|
GetInfoStoresByPoolID
Returns objects of Store by alternate key PoolID.
Syntax |
$ahStores = GetInfoStoresByPoolID($PoolID); |
Input |
|
Return |
|
GetPKeyStoreByName
Returns primary key of Store by alternate key Name.
Syntax |
$StoreID = GetPKeyStoreByName($Name); |
Input |
|
Return |
|
GetPKeyStoresByName
Returns primary keys of Store by alternate key Name.
Syntax |
$aKeys = GetPKeyStoresByName($Name); |
Input |
|
Return |
|
GetPKeyStoresByPoolID
Returns primary keys of Store by alternate key PoolID.
Syntax |
$aKeys = GetPKeyStoresByPoolID($PoolID); |
Input |
|
Return |
|
InsertStore
Creates an entry of Store.
Syntax |
$StoreID = InsertStore($hStore); |
Input |
|
Return |
|
UpdateStore
Updates a(n) Store if any element was changed.
Syntax |
UpdateStore($StoreID, $hStore); UpdateStore($hStore); # if $hStore includes StoreID |
Input |
|