hi guys I need some very basic advise.
I've looked in the web but I can't find the information anywhere, but I am sure that it must be an easy task.
lets suppose i have three varchchar2
I need a third string
I think the conversion from string to char works quite find but how can I add char an varchar into one varchar in Java I would simply write d = a+b+c;
many thanks in advance
matthias
I've looked in the web but I can't find the information anywhere, but I am sure that it must be an easy task.
lets suppose i have three varchchar2
Code:
num Number := 2; a varchar2 :='how do I '; b varchar2 := toChar(num); c varchar2 :' that';
Code:
d varChar = ' how do I 2 that';
many thanks in advance
matthias
Comment