<?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: VB6 Oracle 10 Stored procedures with parameters</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/vb6-oracle-10-stored-procedures-with-parameters/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers/vb6-oracle-10-stored-procedures-with-parameters/</link>
	<description></description>
	<lastBuildDate>Wed, 19 Jun 2013 01:14:38 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: hermes68</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/vb6-oracle-10-stored-procedures-with-parameters/#comment-58524</link>
		<dc:creator>hermes68</dc:creator>
		<pubDate>Thu, 11 Dec 2008 14:16:05 +0000</pubDate>
		<guid isPermaLink="false">#comment-58524</guid>
		<description><![CDATA[No way, I wil try without parameters]]></description>
		<content:encoded><![CDATA[<p>No way, I wil try without parameters</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: carlosdl</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/vb6-oracle-10-stored-procedures-with-parameters/#comment-58454</link>
		<dc:creator>carlosdl</dc:creator>
		<pubDate>Tue, 09 Dec 2008 19:10:09 +0000</pubDate>
		<guid isPermaLink="false">#comment-58454</guid>
		<description><![CDATA[It should be schema.package.procedure]]></description>
		<content:encoded><![CDATA[<p>It should be schema.package.procedure</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hermes68</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/vb6-oracle-10-stored-procedures-with-parameters/#comment-58445</link>
		<dc:creator>hermes68</dc:creator>
		<pubDate>Tue, 09 Dec 2008 16:26:54 +0000</pubDate>
		<guid isPermaLink="false">#comment-58445</guid>
		<description><![CDATA[Doesn&#039;t work, for 10g what should be the full text (schema.user.package.procedure ¿?) to call a procedure in a package ??

thank you]]></description>
		<content:encoded><![CDATA[<p>Doesn&#8217;t work, for 10g what should be the full text (schema.user.package.procedure ¿?) to call a procedure in a package ??</p>
<p>thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: carlosdl</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/vb6-oracle-10-stored-procedures-with-parameters/#comment-58423</link>
		<dc:creator>carlosdl</dc:creator>
		<pubDate>Mon, 08 Dec 2008 21:44:10 +0000</pubDate>
		<guid isPermaLink="false">#comment-58423</guid>
		<description><![CDATA[Hmmm, not sure about that.
That error message usually fires when one is referring to parameters by name (&quot;Couldn&#039;t find item indicated &lt;i&gt;by text&lt;/i&gt;&quot;), but your code is not doing that, but referring to them by position.

Have you tried something like the following ?

 1110    lstrSQL = &quot;{call Pyramid.Load_Tables(?, ?, ?)}&quot;
 1120    Set lrdoQ = vConexionDatos.MiDataBase.CreateQuery(&quot;ProcessTables&quot;, lstrSQL)
 1130    lrdoQ.rdoParameters(0).Direction = rdParamInput
 1140    lrdoQ.rdoParameters(0).Type = rdTypeDATE
 1150    lrdoQ.rdoParameters(0).value = lFromDate
 1160    lrdoQ.rdoParameters(1).Direction = rdParamInput
 1170    lrdoQ.rdoParameters(1).Type = rdTypeDATE
 1180    lrdoQ.rdoParameters(1).value = lToDate
 1160    lrdoQ.rdoParameters(2).Direction = rdParamInput
 1170    lrdoQ.rdoParameters(2).Type = rdTypeINTEGER
 1180    lrdoQ.rdoParameters(2).value = 0
 1210    lrdoQ.Execute
 1230    lrdoQ.Close]]></description>
		<content:encoded><![CDATA[<p>Hmmm, not sure about that.<br />
That error message usually fires when one is referring to parameters by name (&#8220;Couldn&#8217;t find item indicated <i>by text</i>&#8220;), but your code is not doing that, but referring to them by position.</p>
<p>Have you tried something like the following ?</p>
<p> 1110    lstrSQL = &#8220;{call Pyramid.Load_Tables(?, ?, ?)}&#8221;<br />
 1120    Set lrdoQ = vConexionDatos.MiDataBase.CreateQuery(&#8220;ProcessTables&#8221;, lstrSQL)<br />
 1130    lrdoQ.rdoParameters(0).Direction = rdParamInput<br />
 1140    lrdoQ.rdoParameters(0).Type = rdTypeDATE<br />
 1150    lrdoQ.rdoParameters(0).value = lFromDate<br />
 1160    lrdoQ.rdoParameters(1).Direction = rdParamInput<br />
 1170    lrdoQ.rdoParameters(1).Type = rdTypeDATE<br />
 1180    lrdoQ.rdoParameters(1).value = lToDate<br />
 1160    lrdoQ.rdoParameters(2).Direction = rdParamInput<br />
 1170    lrdoQ.rdoParameters(2).Type = rdTypeINTEGER<br />
 1180    lrdoQ.rdoParameters(2).value = 0<br />
 1210    lrdoQ.Execute<br />
 1230    lrdoQ.Close</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hermes68</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/vb6-oracle-10-stored-procedures-with-parameters/#comment-58403</link>
		<dc:creator>hermes68</dc:creator>
		<pubDate>Mon, 08 Dec 2008 16:06:22 +0000</pubDate>
		<guid isPermaLink="false">#comment-58403</guid>
		<description><![CDATA[Yes, I supose 10g is more strict with something 8 isn´t.  Naming, parameters?]]></description>
		<content:encoded><![CDATA[<p>Yes, I supose 10g is more strict with something 8 isn´t.  Naming, parameters?</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 3/10 queries in 0.034 seconds using memcached
Object Caching 323/329 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-06-19 04:15:25 -->