Hi all,
I am trying to create a table by writing a query in xaction. For fetching data the query is like : -
<action-definition>
<component-name>SQLLookupRule</component-name>
<action-inputs>
</action-inputs>
<action-outputs>
</action-outputs>
<component-definition>
<!-- Define the datasource for the query -->
<jndi><![CDATA[SampleData]]></jndi>
<source>sql</source>
<!-- Define the query to execute. -->
<query>
<![CDATA[select ...QUERY GOES HERE....
]]>
</query>
</component-definition>
</action-definition>
Now instead of select query if I write CREATE table query then SQL throws error as
Can not issue data manipulation statements with executeQuery().
How can I do the same.
Thanks & Regard
Ashutosh Kumar Nirala


Reply With Quote

