To access a data file through AcuServer, the following syntax must be passed to the file handler:
Windows:
acurfap://servername:[port]:path\to\file
UNIX:
acurfap://servername:[port]:/path/to/file
You can specify the full syntax in the SELECT statement. For example, the following statement connects to the server asvr1, on port 3011, then locates the file idx1 at C:\idx\ (Windows) or /home/idx/ (UNIX).
Windows:
... select acusvridx assign to acurfap://asvr1:3011:c:\idx\idx1. ...
UNIX:
... select acusvridx assign to acurfap://asvr1:3011:/home/idx/idx1. ...
If you are not explicitly using the AcuServer syntax in your SELECT statement, for example:
... select acusvridx assign to idx1. ...
you must specify it in the COBDATA environment variable using the syntax described above:
Windows:
set COBDATA=%COBDATA%; "acurfap://servername:port:path/to/file"
UNIX:
export COBDATA=$COBDATA: '"acurfap://servername:port:path/to/file"'
The following example connects to the server asvr2, on the default port, then locates the file in the SELECT statement at c:\idx\ (Windows) or /home/idx/ (UNIX).
Windows:
set COBDATA=%COBDATA%; "acurfap://asvr2::c:\idx"
UNIX:
export COBDATA=$COBDATA: '"acurfap://asvr2::/home/idx"'
If a path name is specified in COBDATA, it is prepended to the file name before file name mapping takes effect.
You must also compile with FILETYPE=17 if you are using a sequential file, or if your file handling configuration file does not specify IDXFORMAT=17 for the Vision file.
If you have used any ACUCOBOL file name mapping techniques to specify an AcuServer file, you will need to update the configuration to use Micro Focus file name mapping. Use the following table as a guide to some of the equivalents in this COBOL system.
ACUCOBOL variable | Replace with |
---|---|
FILE_CASE | FILECASE configuration option |
FILE_PREFIX | COBDATA environment variable |
FILE_SUFFIX | FILESUFFIX configuration option |
APPLY_FILE_PATH | n/a |
FILE_ALIAS_PREFIX | dd_ mapping |
The encryption and password protection features are not supported in Enterprise Developer.