home *** CD-ROM | disk | FTP | other *** search
/ Piper's Pit BBS/FTP: ibm 0000 - 0009 / ibm0000-0009 / ibm0003.tar / ibm0003 / ORACLE10.ZIP / 43ANSI.SQL < prev    next >
Encoding:
Text File  |  1987-08-20  |  1.6 KB  |  38 lines

  1. set echo off
  2.  
  3. rem **********************************************************************
  4. rem Enter the master record for the CRT definition
  5. rem **********************************************************************
  6.  
  7. delete from crt where name='43ANSI';
  8. insert into crt (name, type, base, lines, columns, msgl, modl, clearscreen,
  9.     cleareol, att3, att2_3, att1_2_3,
  10.     backspace, forespace, goto_cl, clearline, tset, att1,
  11.     att2, att1_2, att1_3, attoff, scrup, scrdn, graphon,
  12.     graphoff, cursorup, cursordown)
  13.  values ('43ANSI', 'CHAR', 1, 43, 80, 42, 43, '\e[0;32m\e[2J',
  14.     '\e[K', '\e[5;31m', '\e[0;37;44m', '\e[0;30;42m',
  15.     '\e[D', '\e[C', '\e[\y;\xH', '\e[2K', NULL, '\e[0;33;1m',
  16.     '\e[0m', '\e[0;37;41m', '\e[0;31;1m', '\e[0;32m', '\eD', '\eM', NULL,
  17.     NULL, '\e[A', '\e[B');
  18.  
  19. rem **********************************************************************
  20. rem Define the box-graphic characters
  21. rem **********************************************************************
  22.  
  23. delete from crtbox where crtname='43ANSI';
  24. insert into crtbox values ('43ANSI', 'Y', 'x', 'q', 'a', 'k', 'b', 'j',
  25.     't', 'c', 'w', 'v', 'd', '|', '-', '+', '+', '+', '+', '+', '+', '+',
  26.     '+', '+')
  27. /
  28.  
  29. rem **********************************************************************
  30. rem Define the function keys
  31. rem **********************************************************************
  32.  
  33. DELETE FROM esc WHERE NAME='43ANSI';
  34. insert into esc select prod_code, '43ANSI', func, escseq, comments
  35.                   from esc
  36.                  where name='PCBIOS';
  37. commit
  38.