Difference between revisions of "INUSE()"

From Lianjapedia
Jump to: navigation, search
(Example)
Line 13: Line 13:
 
==Example==
 
==Example==
 
<code lang="recital">
 
<code lang="recital">
// The demo view bridge opens
+
? inuse("customers")
// the tables customer, accounts,
+
// state and products in workareas 1 – 4
+
use demo
+
? inuse("customer")
+
 
.T.
 
.T.
? inuse("product")
+
? inuse("products")
 
.T.
 
.T.
 
</code>
 
</code>

Revision as of 09:08, 10 February 2012

Purpose

Function to determine if a table is open

Syntax

INUSE(<expC>)

See Also

DBF(), NDX(), SET EXCLUSIVE, USE, USED()

Description

The INUSE() function checks if a table with the alias name specified in <expC> is open in any workarea. The INUSE() functions returns .T. if a table is open, .F. if not. The alias can be specified in the USE command. If not specified, the table basename is used

Example

? inuse("customers")
.T.
? inuse("products")
.T.