There are some problems when passing the following text to the TOracleScript.Lines property:
CREATE OR REPLACE AND RESOLVE JAVA SOURCE NAMED A.B AS
public class Test
{
public static String test(String in)
{
String result;
return result;
}
};
/
In that case, property Commands consists of two items instead of one - content is divided into two parts. After changing 'RESOLVE' keyword to 'COMPILE', text is parsed correctly (consists of only one item).
Is there any workaround for this ?
CREATE OR REPLACE AND RESOLVE JAVA SOURCE NAMED A.B AS
public class Test
{
public static String test(String in)
{
String result;
return result;
}
};
/
In that case, property Commands consists of two items instead of one - content is divided into two parts. After changing 'RESOLVE' keyword to 'COMPILE', text is parsed correctly (consists of only one item).
Is there any workaround for this ?