07-23-2019, 01:08 AM
(This post was last modified: 07-23-2019, 01:22 AM by clarencemartin.)
(07-22-2019, 11:17 PM)efrain.c Wrote:(07-22-2019, 03:14 AM)clarencemartin Wrote: can you please test this script that you posted?
local tInputA, tOutputA, tTableID
put cdb_userTableName() into tTableID
put empty into tInputA[tTableID]["*"]
put cdb_batchRead(tInputA,"cloud") into tOutputA
I have been trying to make this work and this doesn't seem to work.
Hi Clarence,
Can you try replacing
put cdb_userTableName() into tTableID
with
put cdb_tableID(cdb_userTableName()) into tTableID
This should fix your issue and give you an array with user records.
Thank you. I'll give it a try and let you know.
Yes, it works!