skip to main content
OpenEdge Data Management: DataServer for ODBC
Programming Considerations : ABL issues : Compiling ABL procedures
 

Compiling ABL procedures

The COMPILE statement lets you compile ABL procedures and save the compilations to disk. This speeds up your application execution time since ABL does not have to recompile every time you want to run a procedure.
To compile procedures that access an ODBC data source, start up an OpenEdge client and connect to the schema holder for your target data source using the schema holder's logical database name, then use the COMPILE statement. If you change the name of the schema holder after you compile a procedure, you must connect to the renamed schema holder and recompile the procedure. For more information, see the COMPILE Statement reference entry in OpenEdge Development: ABL Reference.
Note: You do not have to connect to the target data source to compile a procedure. The schema holder contains all the information that the Compiler requires.
In this section: 
* R-code