Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

CURSORsetprop?

Status
Not open for further replies.

august

MIS
Aug 24, 2000
150
PH
Is there a possibility to leave the database open if i use CURSORSETPROP('Buffering',5)? if ever how can i return to its original buffer?

August [sig][/sig]
 
august

Is there a possibility to leave the database open if i use CURSORSETPROP('Buffering',5.,[TABLENAME])?

Not too sure what you mean by this but when you want to update the table or cursor use:-

TABLEUPDATE(.T.,.T.,[TABLENAME])

If you want to discard the changes use:-

TABLEREVERT(.T.,[TABLENAME])

if ever how can i return to its original buffer?)

CURSORSETPROP('Buffering',1,[TABLENAME]) && Disables buffering for the specific table

IF you no longer need buffering for any table, you can also:-

SET MULTILOCKS OFF

Chris

[sig][/sig]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top