Skip to main content

Presistant Storage Function

Stores the specified key-value pair in a persistent storage.

Syntax

PersistentStore(scalar key,scalar Value)

Arguments

ArgumentDescription
scalar Key scalar Valuespecify 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.