home *** CD-ROM | disk | FTP | other *** search
- echo off
- echo INFORMIX-4GL Demonstration Database Installation Script
- echo STARTSQL (or PSTARTSQL) must have been run. If not, enter CTRL-C
- pause
-
- echo Creating STORES database ....
-
- mkstore4
- if errorlevel 1 goto nostore
- echo STORES database created ....
- goto load
-
- :nostore
-
- echo Unable to create STORES database
- exit
-
- :load
-
- democopy fglfiles
-
- echo Loading STORES database ....
- dbload -d stores -c dbload.cmd -l dbload.log > dbload.out
-
- echo Building INFORMIX-4GL Demonstration Forms and Messages ....
- form4gl cust
- form4gl custcur
- form4gl customer
- form4gl order
- form4gl ordcur
- form4gl stock1
-
- mkmessage custhelp.msg custhelp.ex
-
- form4gl custform
- form4gl orderfor
- form4gl state_li
- form4gl stock_se
-
- mkmessage helpdemo.src helpdemo
-
- echo End of INFORMIX-4GL Demonstration Database Installation Script
-