home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 6 / 06.iso / a / a610 / 4.ddi / BIN / I4GLDEMO.BAT < prev    next >
Encoding:
DOS Batch File  |  1989-12-08  |  844 b   |  43 lines

  1. echo off
  2. echo INFORMIX-4GL Demonstration Database Installation Script
  3. echo STARTSQL (or PSTARTSQL) must have been run.  If not, enter CTRL-C
  4. pause
  5.  
  6. echo Creating STORES database ....
  7.  
  8. mkstore4
  9. if errorlevel 1 goto nostore
  10. echo STORES database created ....
  11. goto load
  12.  
  13. :nostore
  14.  
  15. echo Unable to create STORES database
  16. exit
  17.  
  18. :load
  19.  
  20. democopy fglfiles
  21.  
  22. echo Loading STORES database ....
  23. dbload -d stores -c dbload.cmd -l dbload.log > dbload.out
  24.  
  25. echo Building INFORMIX-4GL Demonstration Forms and Messages ....
  26. form4gl cust
  27. form4gl custcur
  28. form4gl customer
  29. form4gl order
  30. form4gl ordcur
  31. form4gl stock1
  32.  
  33. mkmessage custhelp.msg custhelp.ex
  34.  
  35. form4gl custform
  36. form4gl orderfor
  37. form4gl state_li
  38. form4gl stock_se
  39.  
  40. mkmessage helpdemo.src helpdemo
  41.  
  42. echo End of INFORMIX-4GL Demonstration Database Installation Script
  43.