Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
661 views
in Technique[技术] by (71.8m points)

stored procedures - NZPLSQL: How to stop backslash from escaping single quote

First time posting a question here, so please excuse me if there are formatting issues.

I am trying to write a Netezza Stored Procedure to dynamically update a filename as it goes through a loop. However, when trying to define the folder path as a string, the backslash '' is escaping the single quote terminating the string.

...

OUTPUT_FILEPATH = 'C:UsersTest'

...

ERROR [01000] NOTICE: plpgsql: ERROR during compile of XXX.TEST near line 1

ERROR [HY000] ERROR: unterminated string starting on line 1

If I tried using double backslash to show the escapechar, both backslash characters will appear.

...

OUTPUT_FILEPATH = 'C:UsersTest\'

...

NOTICE: Creating Batch TEST-B 01 at C:UsersTest\

If I tried to repeat the single quotes once or twice, it either doesn't compile, or repeats the same error that the string is unterminated.

...

OUTPUT_FILEPATH = 'C:UsersTest''

...

ERROR [42000] Syntax error or access violation

...

OUTPUT_FILEPATH = 'C:UsersTest'''

...

ERROR [01000] NOTICE: plpgsql: ERROR during compile of XXX.TEST near line 1

ERROR [HY000] ERROR: unterminated string starting on line 1

How do we prevent the escapechar from escaping the terminating single quote in NZPLSQL?

Full script reproduced below for reference:

...

CREATE OR REPLACE PROCEDURE XXX.TEST()
RETURNS INTEGER
LANGUAGE NZPLSQL AS
BEGIN PROC
    DECLARE
    FILE_HDR NVARCHAR;
    BATCH_ID NVARCHAR;
    OUTPUT_FILEPATH NVARCHAR;
    CNT INT;
BEGIN
CNT:=1;
FILE_HEADER:='TEST-B';

WHILE CNT < 10 LOOP
    BATCH_ID:= TO_CHAR(CNT, 'FM09');
    OUTPUT_FILEPATH:= 'C:UsersTest'||FILE_HEADER||BATCH_ID||'.csv';
    RAISE NOTICE 'Creating Batch % % at %', FILE_HEADER, BATCH_ID, OUTPUT_FILEPATH;
END LOOP;

END;
END_PROC;   

...

question from:https://stackoverflow.com/questions/65598372/nzplsql-how-to-stop-backslash-from-escaping-single-quote

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

1.4m articles

1.4m replys

5 comments

56.9k users

...