2 |
1.353315 |
DFX_Operation |
Enum |
|
|
|
|
|
|
enum DFX_Operation
{
AddToParameterList, // builds PARAMETERS clause
AddToSelectList, // builds SELECT clause
BindField, // sets up binding structure
BindParam, // sets parameter values
Fixup, // sets NULL status
AllocCache, // allocates cache used for dirty check
StoreField, // saves current record to cache
LoadField, // restores cached data to member vars
FreeCache, // frees cache
SetFieldNull, // sets field status & value to NULL
MarkForAddNew, // marks fields dirty if not PSEUDO NULL
MarkForEdit, // marks fields dirty if don't match cache
SetDirtyField, // sets field values marked as dirty
DumpField,
MaxDFXOperation, // dummy operation type for input checking
};
|
%ProgramFiles(x86)%\Microsoft Visual Studio\2019\Professional\VC\Tools\MSVC\14.16.27023\atlmfc\include\afxdao.h(400,0) |
|
3 |
0.9666535 |
RFX_Operation |
Enum |
|
|
|
|
|
|
enum RFX_Operation
{
BindParam, // register users parameters with ODBC SQLBindParameter
RebindParam, // migrate param values to proxy array before Requery
BindFieldToColumn, // register users fields with ODBC SQLBindCol
BindFieldForUpdate, // temporarily bind columns before update (via SQLSetPos)
UnbindFieldForUpdate, // unbind columns after update (via SQLSetPos)
Fixup, // Set string lengths, clear status bits
MarkForAddNew, // Prepare fields and flags for addnew operation
MarkForUpdate, // Prepare fields and flags for update operation
Name, // append dirty field name
NameValue, // append dirty name=value
Value, // append dirty value or parameter marker
SetFieldNull, // Set status bit for null value
StoreField, // archive values of current record
LoadField, // reload archived values into current record
AllocCache, // allocate cache used for dirty field check
AllocMultiRowBuffer, // allocate buffer holding multi rows of data
DeleteMultiRowBuffer, // delete buffer holding multi rows of data
DumpField, // dump bound field name and value
};
|
%ProgramFiles(x86)%\Microsoft Visual Studio\2019\Professional\VC\Tools\MSVC\14.16.27023\atlmfc\include\afxdb.h(326,0) |
|