home *** CD-ROM | disk | FTP | other *** search
- /*
- *
- * Script name: CurrentEnvironment.rexx
- * Author: Franz Hemmer
- * Purpose: Demonstrate how to obtain name and path of current environment in InterBase.
- * Related Program: InterBase Pro
- * Written: 22.03.93
- *
- */
-
- Options Results
-
- /*----------------------------------------------*/
- /* Address InterBase port, and execute command. */
- /*----------------------------------------------*/
- ADDRESS INTERBASE1 CURRENT_ENVIRONMENT
- parse var result name path
- SAY 'Path of current table: 'path
- SAY 'Name of current table: ' name
-