Presistant Storage Function
Stores the specified key-value pair in a persistent storage.
Syntax
PersistentStore(scalar key,scalar Value)
Arguments
| Argument | Description |
|---|---|
scalar Key scalar Value | specify the key specify the value |
Examples:
1.
PersistentStore (‘abc’,’def’)
Stores ‘def’ as the associated value for key ‘abc’.
2. PersistentStore(‘LastRecord’, SelectValue([FusionTestTable.VarcharColumn],Count([FusionTestTable.VarcharColumn])))
Stores the last value of FusionTestTable.VarcharColumn as LastRecord.