I would like to have some little Documentation for the defines in a Special copy definition.
e.g. for C++/C# you used:
I want to make a little Copy-Def to translate a Select Statement with parameters to a cursor:
My Problem is how to concatenate strings and char(x). (I want ":iSomeParam" changed to "iSomeParam")
thx in advance
e.g. for C++/C# you used:
Code:
#define " = \"
#define \ = \
#define char(9) = \t
...
Code:
#define char(32): = char(32)
cursor curCopied(iParam1 in varchar2) is
<line_1>
<line_*>
<line_n>;
thx in advance