Hello,
I have problem with Syntaxdetection and Syntaxhighlighting of PL/SQL Developer.The PL/SQL Developer don't recognize the String-Definition with q'#String#'.
String example with q'#String#'.
String example without q'#String#'.
Do anybody known a Solution for this problem?
Maybe a setting for PL/SQL-Developer.
Daniel
I have problem with Syntaxdetection and Syntaxhighlighting of PL/SQL Developer.The PL/SQL Developer don't recognize the String-Definition with q'#String#'.
String example with q'#String#'.
Code:
DECLARE
string varchar2(10);
BEGIN
string := q'#I'm a String.#';
END;
String example without q'#String#'.
Code:
DECLARE
string varchar2(10);
BEGIN
string := 'I''m a String.';
END;
Do anybody known a Solution for this problem?
Maybe a setting for PL/SQL-Developer.
Daniel