Hi,
I have included SQL statement in my project and also created JDBC resource.
When I use this styatement,
INSERT INTO XXX_TRACE VALUES('15244194326c8255fcdcc5334611','','','financeServiceProxy')
Its successfully inserting in to DB.
But I need to replace 'financeproxy' with XML elements.
SO i tried this,
INSERT INTO XXX_TRACE VALUES('15244194326c8255fcdcc5334611','','',GetUserName.body/ldap:batchResponse/ldap:searchResponse/ldap:searchResultEntry/@dn)
But its giving me SYntax error.
Do i miss quotes here? How to form valid statement?
I have tried using single quotes. But no use.



