forked from dlee0113/oracle_pl_sql_programming
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path10g_quotes.sql
36 lines (30 loc) · 882 Bytes
/
10g_quotes.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
BEGIN
DBMS_OUTPUT.PUT_LINE (
q'[What's a quote among friends?]');
END;
/
BEGIN
DBMS_OUTPUT.PUT_LINE (
q'!What's a quote among friends?!');
END;
/
CREATE OR REPLACE FUNCTION qstring (str_in IN VARCHAR2, qchar_in VARCHAR2 := '|')
RETURN VARCHAR2
IS
-- Silly....
-- NOT a good use for encapsulation: still have to pass in the quote in the str_in!
--
retval VARCHAR2(32767);
BEGIN
EXECUTE IMMEDIATE
'BEGIN :var := q''' || qchar_in || str_in || qchar_in || '''; END;'
USING OUT retval;
RETURN retval;
END;
/
/*======================================================================
| Supplement to the fifth edition of Oracle PL/SQL Programming by Steven
| Feuerstein with Bill Pribyl, Copyright (c) 1997-2009 O'Reilly Media, Inc.
| To submit corrections or find more code samples visit
| http://oreilly.com/catalog/9780596514464/
*/