12-28-2019, 01:52 AM
Hi JereMiami,
All "cdb" keys can be queried using cdb_query. You can find all records after a certain point in time using the following:
put cdb_query("cdbDateCreated", ">", tSeconds, tTableName, tTarget, tResultFormat) into tOutputA
where
tSeconds is the point in time in seconds
tTableName is the name of the table to query
tTarget is "local" or "cloud"
tResultFormat is "recordList" or "recordData"
tOutputA will contain all records that meet the query criteria.
All "cdb" keys can be queried using cdb_query. You can find all records after a certain point in time using the following:
put cdb_query("cdbDateCreated", ">", tSeconds, tTableName, tTarget, tResultFormat) into tOutputA
where
tSeconds is the point in time in seconds
tTableName is the name of the table to query
tTarget is "local" or "cloud"
tResultFormat is "recordList" or "recordData"
tOutputA will contain all records that meet the query criteria.