Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Filters & Grids
Message
 
To
14/12/2000 12:24:39
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Title:
Miscellaneous
Thread ID:
00396881
Message ID:
00453765
Views:
27
see DBSETPROP in help

CREATE SQL VIEW "LVBATCHHEADER" ;
AS SELECT * FROM amvets!batchheader ;
WHERE Batchheader.batchno = lvBatchTrans.batchno ;
ORDER BY Batchheader.batchno

DBSetProp('LVBATCHHEADER', 'View', 'UpdateType', 1)
DBSetProp('LVBATCHHEADER', 'View', 'WhereType', 1)
DBSetProp('LVBATCHHEADER', 'View', 'FetchMemo', .T.)
DBSetProp('LVBATCHHEADER', 'View', 'SendUpdates', .T.)
DBSetProp('LVBATCHHEADER', 'View', 'UseMemoSize', 255)
DBSetProp('LVBATCHHEADER', 'View', 'FetchSize', 100)
DBSetProp('LVBATCHHEADER', 'View', 'MaxRecords', -1)
DBSetProp('LVBATCHHEADER', 'View', 'Tables', 'amvets!batchheader')
DBSetProp('LVBATCHHEADER', 'View', 'Prepared', .F.)
DBSetProp('LVBATCHHEADER', 'View', 'CompareMemo', .T.)
DBSetProp('LVBATCHHEADER', 'View', 'FetchAsNeeded', .F.)
DBSetProp('LVBATCHHEADER', 'View', 'FetchSize', 100)
DBSetProp('LVBATCHHEADER', 'View', 'Comment', "")
DBSetProp('LVBATCHHEADER', 'View', 'BatchUpdateCount', 1)
DBSetProp('LVBATCHHEADER', 'View', 'ShareConnection', .F.)

*!* Field Level Properties for LVBATCHHEADER
* Props for the LVBATCHHEADER.batchno field.
DBSetProp('LVBATCHHEADER.batchno', 'Field', 'KeyField', .T.)
DBSetProp('LVBATCHHEADER.batchno', 'Field', 'Updatable', .T.)
DBSetProp('LVBATCHHEADER.batchno', 'Field', 'UpdateName', 'amvets!batchheader.batchno')
DBSetProp('LVBATCHHEADER.batchno', 'Field', 'DataType', "C(10)")
* Props for the LVBATCHHEADER.gl_year field.
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform