home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1996 February / PCWK0296.iso / po7_win / tools / plus31 / plus31.ins < prev    next >
Text File  |  1994-12-29  |  2KB  |  67 lines

  1. /* Copyright (c) Oracle Corporation 1992.  All Rights Reserved */
  2. /*****************************************************************************
  3.  
  4.   NAME
  5.     plus31.ins - V3.0.10.3.1 installation script for SQL*Plus for Windows 3.1
  6.  
  7.   DESCRIPTION
  8.     This script installs SQL*Plus for Windows 3.1
  9.  
  10.   OWNER
  11.     Edan Kabatchnik
  12.  
  13.   MODIFIED    DD-MMM-YY  Reason
  14.     LMurphy   08-SEP-94  Modified for Windows SQL*Plus 3.1.3.5.x
  15.     LMurphy   23-MAY-94  Modified for Windows SQL*Plus 3.1.2.2.6
  16.     shall     04-FEB-93  Created from RSF 7.0 script.
  17. *****************************************************************************/
  18. {
  19.     if (doit)
  20.     {
  21.         ins_ratchet = "3.1.3.5.4A";
  22.         execute("%installer_home%\windows.ins");
  23.         permit_retry_operations = TRUE;
  24.  
  25.         ui_action(instantiate(prod_label));
  26.         modify("SQLPATH", sqlpath, ora_config,"Oracle");
  27.         modify("PLUS31", plus31, ora_config,"Oracle");
  28.         modify("EXECUTE_SQL", "PLUS31", ora_config, "Oracle");
  29.  
  30.         if (set_mshelp)
  31.             modify("MSHELP",mshelp,ora_config,"Oracle");
  32.  
  33.         ui_action(instantiate(installing_scripts));
  34.             copy(deinstl);
  35.  
  36.         ui_action(instantiate(installing_exec));
  37.             copy(exe);
  38.  
  39.         ui_action(instantiate(installing_msbs));
  40.             copy(msg, nls_abbreviation);
  41.  
  42.         ui_action(instantiate(installing_sql));
  43.             copy(sql);
  44.  
  45.         ui_action(instantiate(installing_help));
  46.             copy(help);
  47.             copy(doc);
  48.  
  49.         permit_retry_operations = FALSE;
  50.  
  51.         install(winrsf71);
  52.  
  53.         ui_product(product_label);
  54.  
  55.         permit_retry_operations = TRUE;
  56.  
  57.         ui_action(instantiate(registering));
  58.  
  59.         register(current_product);
  60.         if (member(selected_products, current_product))
  61.             reference(current_product);
  62.         reference(winrsf71, current_product);
  63.  
  64.         permit_retry_operations = FALSE;
  65.     }
  66. }
  67.