 




<?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: Searching using Oracle Forms</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/searching/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers/searching/</link>
	<description></description>
	<lastBuildDate>Wed, 22 May 2013 05:05:11 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: d2k</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/searching/#comment-60168</link>
		<dc:creator>d2k</dc:creator>
		<pubDate>Fri, 20 Feb 2009 08:42:31 +0000</pubDate>
		<guid isPermaLink="false">#comment-60168</guid>
		<description><![CDATA[suppose 
if you have to get the details from the emp table based on the empno when ever you click on the 
&#039;Enter Button&#039; then write the following code in &#039;When-Button-Pressed&#039; trigger.

declare
  cursor c1 is select ename,sal,job from emp where empno=:emp.empno;
begin

open c1;
  loop
      fetch c1 into :ename,:sal,:job;
     exit when c1%notfound;
 end loop;
close c1;
end;


try like this once.]]></description>
		<content:encoded><![CDATA[<p>suppose<br />
if you have to get the details from the emp table based on the empno when ever you click on the<br />
&#8216;Enter Button&#8217; then write the following code in &#8216;When-Button-Pressed&#8217; trigger.</p>
<p>declare<br />
  cursor c1 is select ename,sal,job from emp where empno=:emp.empno;<br />
begin</p>
<p>open c1;<br />
  loop<br />
      fetch c1 into :ename,:sal,:job;<br />
     exit when c1%notfound;<br />
 end loop;<br />
close c1;<br />
end;</p>
<p>try like this once.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached
Database Caching 6/9 queries in 0.013 seconds using memcached
Object Caching 268/271 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-05-22 08:55:15 -->