Try OpenEdge Now
skip to main content
Application Migration and Development Guide
Application Development with PAS for OpenEdge : Programming ABL Client Applications : Connecting to a PAS for OpenEdge instance : Creating a server object handle
 
Creating a server object handle
To create a server object handle,you must define a HANDLE variable and execute the CREATE SERVER statement to instantiate and reference the new server object with the handle. For example::
DEFINE VARIABLE hServer AS HANDLE NO-UNDO.
CREATE SERVER hServer.
You can then use this handle to physically connect to a PAS for OpenEdge instance.