Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Why the difference?
Message
 
 
To
27/06/2001 10:43:14
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Miscellaneous
Thread ID:
00523778
Message ID:
00524172
Views:
13
This message has been marked as a message which has helped to the initial question of the thread.
The problem you will have at runtime is clashing view creations from multiple users doing this within the common DBC. I still recommend creating a cursor using SQL. You can then make the cursor updatable:

CursorSetProp("SendUpdates",.t.)
CursorSetProp("Tables","dbcname!mytable")
CursorSetProp("KeyFieldList","keyid")
CursorSetProp("WhereType",1)
CursorSetProp("UpdatableFieldList","keyid, descript")
CursorSetProp("UpdateNameList","keyid mytable.keyid, descript mytable.descript")
CursorSetProp("Buffering", 5) && optional [my preference]
Mark McCasland
Midlothian, TX USA
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform