restoreString(name)

Restore a string that has been saved in the SPUPad.

. Returns null if the SPUPad does not contain a string by the given name. Since the SPUPad is cleared at the end of each transaction, the SPUPad can only be used when all SQL statements are inside of the same begin/commit block.

Example
str = restoreString("words")
myarray = array.deserialize(restoreString("myarray"))
mytable = json.decode(restoreString("json"))