~ubuntu-branches/ubuntu/utopic/codemirror-js/utopic

« back to all changes in this revision

Viewing changes to mode/plsql/index.html

  • Committer: Package Import Robot
  • Author(s): David Paleino
  • Date: 2012-04-12 12:25:28 UTC
  • Revision ID: package-import@ubuntu.com-20120412122528-8xp5a8frj4h1d3ee
Tags: upstream-2.23
ImportĀ upstreamĀ versionĀ 2.23

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!doctype html>
 
2
<html>
 
3
  <head>
 
4
    <title>CodeMirror: Oracle PL/SQL mode</title>
 
5
    <link rel="stylesheet" href="../../lib/codemirror.css">
 
6
    <script src="../../lib/codemirror.js"></script>
 
7
    <script src="plsql.js"></script>
 
8
    <link rel="stylesheet" href="../../doc/docs.css">
 
9
    <style>.CodeMirror {border: 2px inset #dee;}</style>
 
10
  </head>
 
11
  <body>
 
12
    <h1>CodeMirror: Oracle PL/SQL mode</h1>
 
13
 
 
14
<form><textarea id="code" name="code">
 
15
-- Oracle PL/SQL Code Demo
 
16
/*
 
17
   based on c-like mode, adapted to PL/SQL by Peter Raganitsch ( http://www.oracle-and-apex.com/ )
 
18
   April 2011
 
19
*/
 
20
DECLARE
 
21
    vIdx    NUMBER;
 
22
    vString VARCHAR2(100);
 
23
    cText   CONSTANT VARCHAR2(100) := 'That''s it! Have fun with CodeMirror 2';
 
24
BEGIN
 
25
    vIdx := 0;
 
26
    --
 
27
    FOR rDATA IN
 
28
      ( SELECT *
 
29
          FROM EMP
 
30
         ORDER BY EMPNO
 
31
      )
 
32
    LOOP
 
33
        vIdx    := vIdx + 1;
 
34
        vString := rDATA.EMPNO || ' - ' || rDATA.ENAME;
 
35
        --
 
36
        UPDATE EMP
 
37
           SET SAL   = SAL * 101/100
 
38
         WHERE EMPNO = rDATA.EMPNO
 
39
        ;
 
40
    END LOOP;
 
41
    --
 
42
    SYS.DBMS_OUTPUT.Put_Line (cText);
 
43
END;
 
44
--
 
45
</textarea></form>
 
46
 
 
47
    <script>
 
48
      var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
 
49
        lineNumbers: true,
 
50
        matchBrackets: true,
 
51
        indentUnit: 4,
 
52
        mode: "text/x-plsql"
 
53
      });
 
54
    </script>
 
55
 
 
56
    <p>
 
57
        Simple mode that handles Oracle PL/SQL language (and Oracle SQL, of course).
 
58
    </p>
 
59
 
 
60
    <p><strong>MIME type defined:</strong> <code>text/x-plsql</code>
 
61
    (PLSQL code)
 
62
</html>