fvancrae
(Frederic Vancraeyveldt)
January 29, 2025, 9:27am
1
I want to get the DB tablename from a DA schema name client side.
I notice the GetSchema and GetTableSchema functions both return a lot of data but the Statement list that contains the TargetTable field is empty.
Is this on purpose?
What is the best way to get the targettable name from a DA schema
EvgenyK
(Evgeny Karpov)
January 29, 2025, 11:50am
2
Hi,
why do you need TargetTable?
DynamicWhere and DASQL work with table name only.
note: We clear table.Statements collection by security reasons when client requests server-side schema.
fvancrae
(Frederic Vancraeyveldt)
January 29, 2025, 12:48pm
3
We have some (own) cloud syncing code which does uses the DB tablename regardless of the DA schema name.
We can solve it by passing both names however.
I’ll do that