I have a number of SQL scripts of the form:
declare @GROUP_XREF varchar(30)
select @GROUP_XREF = ‘feedtest’;
select GROUP_ID from gr_group where XREF = @GROUP_XREF;
This does not work in the MyEclipse Database Explorer. I assume this is because MyEclipse is parsing the file and executing the statements in seperate connections, or something like that. Is there a setting that can be changed to allow scripts like that to work? There are other tools where multi-line scripting works, but none of them are offered as an Eclipse plugin.
Thanks for your time on this
Pat O