$FUNCNAME$
  DBCLEARRELATION()
$CATEGORY$
  DATABASE
$SUMMARY$
   Clear active relations
$LANG_RU$
     .
$SYNTAX$
     DBCLEARRELATION() --> NIL
$LANG_RU$
     DBCLEARRELATION() --> NIL
$RETURNS$
     DBCLEARRELATION() always returns NIL.
$LANG_RU$
     DBCLEARRELATION()   NIL.
$DESCRIPTION$
     DBCLEARRELATION() clears any active relations for the current work area.

     DBCLEARRELATION() performs the same function as the standard SET
     RELATION TO command with no clauses specified.  For more information,
     refer to the SET RELATION command.
$LANG_RU$
     DBCLEARRELATION()       
     .

     DBCLEARRELATION()    ,    
     SET RELATION TO  .     
       SET RELATION.
$EXAMPLES$
       The following example sets a relation, lists data, and then
	clears the relation:

	USE Employee NEW
	USE Department NEW INDEX Dept
	//
	SELECT Employee
	DBSETRELATION("Department", ;
	   {|| Employee->Dept}, "Employee->Dept")
	LIST Employee->Name, Department->Name
	DBCLEARRELATION()
$SEEALSO$
  DBSETRELATION()
$END$
