Difference between revisions of "DBC CLOSEDATA"

From Lianjapedia
Jump to: navigation, search
Line 25: Line 25:
 
The DBC_CLOSEDATA database event is triggered by the closure of a database.  The associated code is run before the database is actually closed.  Databases are closed using the CLOSE DATABASES command.
 
The DBC_CLOSEDATA database event is triggered by the closure of a database.  The associated code is run before the database is actually closed.  Databases are closed using the CLOSE DATABASES command.
  
{| class="wikitable"
+
{| class="wikitable" width=100%
 
!Event||Description
 
!Event||Description
 
|-
 
|-
 
|<expC>||The database name
 
|<expC>||The database name
 
|-
 
|-
|<expL1>||Specifies whether the ALL keyword was included on the CLOSE DATABASES, .T. or not, .F.
+
|valign="top"|<expL1>||Specifies whether the ALL keyword was included on the CLOSE DATABASES, .T. or not, .F.
 
|-
 
|-
|<expL2>||If the dbc_closedata procedure returns .F., the database is not closed, if .T., the close operation continues
+
|valign="top"|<expL2>||If the dbc_closedata procedure returns .F., the database is not closed, if .T., the close operation continues
 
|-
 
|-
 
|}
 
|}

Revision as of 12:30, 21 January 2013

Purpose

Database event triggered by the closure of a database

Syntax

PROCEDURE dbc_CloseData(<expC>,<expL1>)

// Commands

ENDPROC | RETURN [<expL2>]

or

PROCEDURE dbc_CloseData

LPARAMETERS [<expC>,<expL1>]

// Commands

ENDPROC | RETURN [<expL2>]

See Also

ADATABASES(), ALTER TABLE, ADD TABLE, ALTER INDEX, CLOSE DATABASES, CLOSE TABLES, COMPILE DATABASE, CREATE DATABASE, CREATE TABLE, CREATE INDEX, CREATE VIEW, DATABASE(), DATABASE EVENTS, DBUSED(), DISPLAY DATABASE, DISPLAY INDEXES, DISPLAY TABLES, DROP DATABASE, DROP INDEX, DROP TABLE, GETENV(), LIST DATABASE, LIST INDEXES, LIST TABLES, OPEN DATABASE, PACK DATABASE, REBUILD DATABASE, REINDEX DATABASE, SET AUTOCATALOG, SET EXCLUSIVE, USE

Description

The DBC_CLOSEDATA database event is triggered by the closure of a database. The associated code is run before the database is actually closed. Databases are closed using the CLOSE DATABASES command.

Event Description
<expC> The database name
<expL1> Specifies whether the ALL keyword was included on the CLOSE DATABASES, .T. or not, .F.
<expL2> If the dbc_closedata procedure returns .F., the database is not closed, if .T., the close operation continues

Programs associated with database events should reside in the database's directory.

Example

procedure dbc_closedata
lparameters cName, lAll
close procedures
return