Difference between revisions of "RELEASE LIBRARY"

From Lianjapedia
Jump to: navigation, search
m (1 revision)
m (Text replace - "Recital" to "Lianja")
Line 1: Line 1:
 
==Purpose==
 
==Purpose==
Close an active API library file built with the Recital SDK
+
Close an active API library file built with the Lianja SDK
  
  
Line 14: Line 14:
 
The RELEASE LIBRARY <library filename> command closes the specified API procedure library file.  The SET LIBRARY command is used to open API procedure library files and can also be used to close all active API procedure library files.
 
The RELEASE LIBRARY <library filename> command closes the specified API procedure library file.  The SET LIBRARY command is used to open API procedure library files and can also be used to close all active API procedure library files.
  
The SET LIBRARY and RELEASE LIBRARY commands only affect API procedure library files, not Recital/4GL procedure library files: these are handled by the SET PROCEDURE and CLOSE PROCEDURE commands and the REQUIRE() and REQUIRE_ONCE() functions.
+
The SET LIBRARY and RELEASE LIBRARY commands only affect API procedure library files, not Lianja/4GL procedure library files: these are handled by the SET PROCEDURE and CLOSE PROCEDURE commands and the REQUIRE() and REQUIRE_ONCE() functions.
  
 
The active API procedures and functions can be listed with the LIST or DISPLAY PROCEDURE commands.
 
The active API procedures and functions can be listed with the LIST or DISPLAY PROCEDURE commands.
  
For full details on using the Recital SDK, please see the SDK documentation.
+
For full details on using the Lianja SDK, please see the SDK documentation.
  
  
Line 35: Line 35:
  
 
==Products==
 
==Products==
Recital Server, Recital
+
Lianja Server, Lianja
 
[[Category:Documentation]]
 
[[Category:Documentation]]
 
[[Category:Commands]]
 
[[Category:Commands]]

Revision as of 06:39, 8 December 2012

Purpose

Close an active API library file built with the Lianja SDK


Syntax

RELEASE LIBRARY <library filename>


See Also

CLOSE PROCEDURE, DO, FUNCTION, LINK, LIST PROCEDURE, PARAMETERS, PROCEDURE, SET LIBRARY, REQUIRE(), REQUIRE_ONCE()


Description

The RELEASE LIBRARY <library filename> command closes the specified API procedure library file. The SET LIBRARY command is used to open API procedure library files and can also be used to close all active API procedure library files.

The SET LIBRARY and RELEASE LIBRARY commands only affect API procedure library files, not Lianja/4GL procedure library files: these are handled by the SET PROCEDURE and CLOSE PROCEDURE commands and the REQUIRE() and REQUIRE_ONCE() functions.

The active API procedures and functions can be listed with the LIST or DISPLAY PROCEDURE commands.

For full details on using the Lianja SDK, please see the SDK documentation.


Example

// Open Samples.so API procedure library
set library to Samples.so
// Open pdf.so procedure library without closing active libraries
set library to pdf.so additive
// Close pdf.so API procedure library
release library pdf.so
// Close all active API procedure library files
set library to


Products

Lianja Server, Lianja