<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Calling Stored Procedures using plain SQL &#8211; For when SQL is allowed but calls to Stored Procedures are not</title>
	<atom:link href="http://technology.amis.nl/2006/01/22/calling-stored-procedures-using-plain-sql-for-when-sql-is-allowed-but-calls-to-stored-procedures-are-not/feed/" rel="self" type="application/rss+xml" />
	<link>http://technology.amis.nl/2006/01/22/calling-stored-procedures-using-plain-sql-for-when-sql-is-allowed-but-calls-to-stored-procedures-are-not/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=calling-stored-procedures-using-plain-sql-for-when-sql-is-allowed-but-calls-to-stored-procedures-are-not</link>
	<description></description>
	<lastBuildDate>Fri, 12 Apr 2013 10:04:09 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: renish</title>
		<link>http://technology.amis.nl/2006/01/22/calling-stored-procedures-using-plain-sql-for-when-sql-is-allowed-but-calls-to-stored-procedures-are-not/#comment-2852</link>
		<dc:creator>renish</dc:creator>
		<pubDate>Thu, 02 Aug 2007 14:02:52 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=1017#comment-2852</guid>
		<description><![CDATA[how to do same thing using hibernate query language]]></description>
		<content:encoded><![CDATA[<p>how to do same thing using hibernate query language</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Siva</title>
		<link>http://technology.amis.nl/2006/01/22/calling-stored-procedures-using-plain-sql-for-when-sql-is-allowed-but-calls-to-stored-procedures-are-not/#comment-2851</link>
		<dc:creator>Siva</dc:creator>
		<pubDate>Fri, 16 Feb 2007 09:24:07 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=1017#comment-2851</guid>
		<description><![CDATA[writing functions are good
they are using with SQL
but if u give how to establishing using hibernate Query language]]></description>
		<content:encoded><![CDATA[<p>writing functions are good<br />
they are using with SQL<br />
but if u give how to establishing using hibernate Query language</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nguyen</title>
		<link>http://technology.amis.nl/2006/01/22/calling-stored-procedures-using-plain-sql-for-when-sql-is-allowed-but-calls-to-stored-procedures-are-not/#comment-2850</link>
		<dc:creator>Nguyen</dc:creator>
		<pubDate>Wed, 25 Oct 2006 15:36:41 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=1017#comment-2850</guid>
		<description><![CDATA[i&#039;m newbie in Oracle so can you help me about my stuck ?
In a java servlet
i want insert a row to table A(ID,Name) and ID is sequence number so i want to get ID of inserted row to a String variable in Java
Here is my function :

FUNCTION createPerson(varNAME VARCHAR2)
RETURN VARCHAR2
IS
varID VARCHAR2(25);
BEGIN
        INSERT INTO Person(ID,NAME) VALUES (TO_CHAR(person_seq.nextval),varNAME)
               RETURNING ID INTO varID;
  RETURN varID;
END;

In Java :
String personID = &quot;&quot;;
but i don&#039;t know how to get the return value of createPerson to personID

Thanks for ASAP your answer]]></description>
		<content:encoded><![CDATA[<p>i&#8217;m newbie in Oracle so can you help me about my stuck ?<br />
In a java servlet<br />
i want insert a row to table A(ID,Name) and ID is sequence number so i want to get ID of inserted row to a String variable in Java<br />
Here is my function :</p>
<p>FUNCTION createPerson(varNAME VARCHAR2)<br />
RETURN VARCHAR2<br />
IS<br />
varID VARCHAR2(25);<br />
BEGIN<br />
        INSERT INTO Person(ID,NAME) VALUES (TO_CHAR(person_seq.nextval),varNAME)<br />
               RETURNING ID INTO varID;<br />
  RETURN varID;<br />
END;</p>
<p>In Java :<br />
String personID = &#8220;&#8221;;<br />
but i don&#8217;t know how to get the return value of createPerson to personID</p>
<p>Thanks for ASAP your answer</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ale</title>
		<link>http://technology.amis.nl/2006/01/22/calling-stored-procedures-using-plain-sql-for-when-sql-is-allowed-but-calls-to-stored-procedures-are-not/#comment-2849</link>
		<dc:creator>Ale</dc:creator>
		<pubDate>Wed, 13 Sep 2006 17:59:15 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=1017#comment-2849</guid>
		<description><![CDATA[Hi all,

  I would like to map an Oracle Stored Procedure that return, as an output parameter, one ResultSet, how can i do it? I&#039;m using Hibernate and or iBatis.
  And what about procedures that return multiple ResultSets?

Thanks.]]></description>
		<content:encoded><![CDATA[<p>Hi all,</p>
<p>  I would like to map an Oracle Stored Procedure that return, as an output parameter, one ResultSet, how can i do it? I&#8217;m using Hibernate and or iBatis.<br />
  And what about procedures that return multiple ResultSets?</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: subhasish</title>
		<link>http://technology.amis.nl/2006/01/22/calling-stored-procedures-using-plain-sql-for-when-sql-is-allowed-but-calls-to-stored-procedures-are-not/#comment-2848</link>
		<dc:creator>subhasish</dc:creator>
		<pubDate>Fri, 14 Jul 2006 16:54:32 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=1017#comment-2848</guid>
		<description><![CDATA[i want to know that how can we call function in sql prompt(sql*plus) having out parameter.

       thanks]]></description>
		<content:encoded><![CDATA[<p>i want to know that how can we call function in sql prompt(sql*plus) having out parameter.</p>
<p>       thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: prashant</title>
		<link>http://technology.amis.nl/2006/01/22/calling-stored-procedures-using-plain-sql-for-when-sql-is-allowed-but-calls-to-stored-procedures-are-not/#comment-2847</link>
		<dc:creator>prashant</dc:creator>
		<pubDate>Mon, 15 May 2006 15:19:52 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=1017#comment-2847</guid>
		<description><![CDATA[hi all
I am a kinaa newbie with Hibernate. I have got everything else working
with hibernate pretty neatly. But now I need to call a stored
procedure for something :-( I tried to read this howto, but it is
still not very clear on how I can do this. Would really appreciate if
someone can help. I dont want to write JDBC and DB access code just
for this stored procedure]]></description>
		<content:encoded><![CDATA[<p>hi all<br />
I am a kinaa newbie with Hibernate. I have got everything else working<br />
with hibernate pretty neatly. But now I need to call a stored<br />
procedure for something <img src='http://technology.amis.nl/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' />  I tried to read this howto, but it is<br />
still not very clear on how I can do this. Would really appreciate if<br />
someone can help. I dont want to write JDBC and DB access code just<br />
for this stored procedure</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lucas Jellema</title>
		<link>http://technology.amis.nl/2006/01/22/calling-stored-procedures-using-plain-sql-for-when-sql-is-allowed-but-calls-to-stored-procedures-are-not/#comment-2846</link>
		<dc:creator>Lucas Jellema</dc:creator>
		<pubDate>Sun, 26 Mar 2006 21:23:05 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=1017#comment-2846</guid>
		<description><![CDATA[Dear Broderick,

I have added the full code for the proc_results package to the article. I hope this will help you.

best regards,

Lucas]]></description>
		<content:encoded><![CDATA[<p>Dear Broderick,</p>
<p>I have added the full code for the proc_results package to the article. I hope this will help you.</p>
<p>best regards,</p>
<p>Lucas</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lucas Jellema</title>
		<link>http://technology.amis.nl/2006/01/22/calling-stored-procedures-using-plain-sql-for-when-sql-is-allowed-but-calls-to-stored-procedures-are-not/#comment-2845</link>
		<dc:creator>Lucas Jellema</dc:creator>
		<pubDate>Sun, 26 Mar 2006 21:17:07 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=1017#comment-2845</guid>
		<description><![CDATA[Dear Manikantha,

Yes, you can. You need to add a semi-colon to the end of the insert-statement:
Begin

insert into emp(empno,ename,deptno) select empno,ename,deptno from emp1;
end;

and you have a correct PL/SQL block.

Lucas]]></description>
		<content:encoded><![CDATA[<p>Dear Manikantha,</p>
<p>Yes, you can. You need to add a semi-colon to the end of the insert-statement:<br />
Begin</p>
<p>insert into emp(empno,ename,deptno) select empno,ename,deptno from emp1;<br />
end;</p>
<p>and you have a correct PL/SQL block.</p>
<p>Lucas</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Manikantha varma</title>
		<link>http://technology.amis.nl/2006/01/22/calling-stored-procedures-using-plain-sql-for-when-sql-is-allowed-but-calls-to-stored-procedures-are-not/#comment-2844</link>
		<dc:creator>Manikantha varma</dc:creator>
		<pubDate>Sun, 26 Mar 2006 07:13:40 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=1017#comment-2844</guid>
		<description><![CDATA[Hi,
  i have one question

 can i write a statement in pl/sql stored pocedure in executable block

Begin

insert into emp(empno,ename,deptno) select empno,ename,deptno from emp1
end;
/]]></description>
		<content:encoded><![CDATA[<p>Hi,<br />
  i have one question</p>
<p> can i write a statement in pl/sql stored pocedure in executable block</p>
<p>Begin</p>
<p>insert into emp(empno,ename,deptno) select empno,ename,deptno from emp1<br />
end;<br />
/</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Broderick Ellis</title>
		<link>http://technology.amis.nl/2006/01/22/calling-stored-procedures-using-plain-sql-for-when-sql-is-allowed-but-calls-to-stored-procedures-are-not/#comment-2843</link>
		<dc:creator>Broderick Ellis</dc:creator>
		<pubDate>Sun, 26 Mar 2006 05:00:47 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=1017#comment-2843</guid>
		<description><![CDATA[Lucas,

This solution really helps me with an integration project that I&#039;m currently working on,
but I&#039;m no PL/SQL expert.  Can you provide me with the  proc_results package.

Thanks,
Broderick]]></description>
		<content:encoded><![CDATA[<p>Lucas,</p>
<p>This solution really helps me with an integration project that I&#8217;m currently working on,<br />
but I&#8217;m no PL/SQL expert.  Can you provide me with the  proc_results package.</p>
<p>Thanks,<br />
Broderick</p>
]]></content:encoded>
	</item>
</channel>
</rss>
