PDA

View Full Version : Alpha2 Whats New



Chris Spencer
26-Feb-2014, 03:57 AM
The docs on DD changes don't read to well in the Data_set_prefind/PostFind area

It looks like they are macros? Is this correct or is this just suposed to be pseudo code to illustrate what they do?

//////////////////////////////////////
Data_Set_PreFind
If pbUseDDSQLFilters
// store current table SQL filter information
Send StoreDefaultSQLFilters
// create new table SQL filter information based on
// pbApplyGlobalSQLFilters and psSQLFilter
Send ApplySQLFilter
End

Data_Set_PostFind
If pbUseDDSQLFilters
// restore table SQL filter information
Send RestoreDefaultSQLFilters
End

John Tuohy
26-Feb-2014, 11:23 AM
It's just pseudo code. I can see how this is confusing. A lot of this comes out of our build notes, which often contains information for our own internal use. The actual docs will be quite different. We don't expect that Data_Set_PostFind and Data_Set_PreFind will be used much by developers as there are higher level interfaces for managing server side SQL filters.

-John