Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Buffering Mode
Message
 
To
09/12/1999 14:55:58
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Title:
Miscellaneous
Thread ID:
00301202
Message ID:
00301293
Views:
26
Jimmy,

I will bet the error occurs oin an INDEX ON ... command. You cannot create an index while in table buffering mode so you must;
LOCAL lnBuffermode
SELECT TheTableOrView
lnBufferMode = CursorGetProp("BUFFERING","TheTableOrView")
CursorSetProp("BUFFERING,3,"TheTableOrView")
INDEX ON ...
CursorSetProp("BUFFERING",lnBufferMode,"TheTableOrView")
Previous
Reply
Map
View

Click here to load this message in the networking platform