This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Node.js CheatSheet. | |
// Download the Node.js source code or a pre-built installer for your platform, and start developing today. | |
// Download: http://nodejs.org/download/ | |
// More: http://nodejs.org/api/all.html | |
// 0. Synopsis. | |
// http://nodejs.org/api/synopsis.html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE OR REPLACE FUNCTION func_test | |
( | |
in_term some_table.endterm%type, | |
) | |
RETURN CHAR | |
AS | |
v_do_release NUMBER(1); | |
BEGIN |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Notes: | |
-- The procedure does nothing but output the values of | |
-- the arguments into an out variable. | |
CREATE or REPLACE PROCEDURE proc_test ( | |
in_integer number, | |
in_number decimal, | |
in_date1 date, | |
in_date2 date, | |
in_char char, | |
in_operator some_table.uuid%type, |