<?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: Using Oracle with PHP and CodeIgniter</title>
	<atom:link href="http://www.abbett.org/2007/12/02/using-oracle-with-php-and-codeigniter/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.abbett.org/2007/12/02/using-oracle-with-php-and-codeigniter/</link>
	<description>At the intersection of software development and interaction design</description>
	<pubDate>Sat, 04 Jul 2009 13:39:28 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: BlackMores</title>
		<link>http://www.abbett.org/2007/12/02/using-oracle-with-php-and-codeigniter/comment-page-1/#comment-32656</link>
		<dc:creator>BlackMores</dc:creator>
		<pubDate>Fri, 19 Jun 2009 10:37:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.abbett.org/2007/12/02/using-oracle-with-php-and-codeigniter/#comment-32656</guid>
		<description>Hello, 
i’ve got a problem using CI_DB_oci8_result with stored_function or stored_procedures.

This is my code:

$curs = FALSE;
$return = array ('name' =&#62; ':result', 'value' =&#62; &#38;$curs, 'length' =&#62; -1, 'type' =&#62; OCI_B_CURSOR);
$params[] = array ('name' =&#62; ':p_day', 'value' =&#62; '18/06/2009' );
$this-&#62;db-&#62;stored_function('PKG_WEB_ORDERS', 'FUN_GET_ALL_ORDERS' , $return, $params);
$this-&#62;db-&#62;execute_cursor();
while ($data = oci_fetch_array($this-&#62;db-&#62;curs_id, OCI_ASSOC)) {
var_dump($data);
} 
Instead of using “while ($data = ....”  i would like to use CI_DB_oci8_result functions like result_array() ... 

But I don’t know how!

It seems that it is only possible using the syntax: $this-&#62;db-&#62;query(...);

Any ideas???</description>
		<content:encoded><![CDATA[<p>Hello,<br />
i’ve got a problem using CI_DB_oci8_result with stored_function or stored_procedures.</p>
<p>This is my code:</p>
<p>$curs = FALSE;<br />
$return = array (&#8217;name&#8217; =&gt; &#8216;:result&#8217;, &#8216;value&#8217; =&gt; &amp;$curs, &#8216;length&#8217; =&gt; -1, &#8216;type&#8217; =&gt; OCI_B_CURSOR);<br />
$params[] = array (&#8217;name&#8217; =&gt; &#8216;:p_day&#8217;, &#8216;value&#8217; =&gt; &#8216;18/06/2009&#8242; );<br />
$this-&gt;db-&gt;stored_function(&#8217;PKG_WEB_ORDERS&#8217;, &#8216;FUN_GET_ALL_ORDERS&#8217; , $return, $params);<br />
$this-&gt;db-&gt;execute_cursor();<br />
while ($data = oci_fetch_array($this-&gt;db-&gt;curs_id, OCI_ASSOC)) {<br />
var_dump($data);<br />
}<br />
Instead of using “while ($data = &#8230;.”  i would like to use CI_DB_oci8_result functions like result_array() &#8230; </p>
<p>But I don’t know how!</p>
<p>It seems that it is only possible using the syntax: $this-&gt;db-&gt;query(&#8230;);</p>
<p>Any ideas???</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: CJ</title>
		<link>http://www.abbett.org/2007/12/02/using-oracle-with-php-and-codeigniter/comment-page-1/#comment-28363</link>
		<dc:creator>CJ</dc:creator>
		<pubDate>Wed, 29 Apr 2009 21:23:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.abbett.org/2007/12/02/using-oracle-with-php-and-codeigniter/#comment-28363</guid>
		<description>For the record, PHP can be linked with the Oracle libraries included with Oracle 10g Express Edition ("XE").  You only need (or can use) Oracle Instant Client if your database is running on a remote computer.</description>
		<content:encoded><![CDATA[<p>For the record, PHP can be linked with the Oracle libraries included with Oracle 10g Express Edition (&#8221;XE&#8221;).  You only need (or can use) Oracle Instant Client if your database is running on a remote computer.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: abbett.org &#34; Using Oracle with PHP and CodeIgniter &#171; DevEzine</title>
		<link>http://www.abbett.org/2007/12/02/using-oracle-with-php-and-codeigniter/comment-page-1/#comment-27258</link>
		<dc:creator>abbett.org &#34; Using Oracle with PHP and CodeIgniter &#171; DevEzine</dc:creator>
		<pubDate>Sun, 19 Apr 2009 18:09:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.abbett.org/2007/12/02/using-oracle-with-php-and-codeigniter/#comment-27258</guid>
		<description>[...] Go here to see the original: abbett.org &#34; Using Oracle with PHP and CodeIgniter [...]</description>
		<content:encoded><![CDATA[<p>[...] Go here to see the original: abbett.org &quot; Using Oracle with PHP and CodeIgniter [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martijn Vreeken</title>
		<link>http://www.abbett.org/2007/12/02/using-oracle-with-php-and-codeigniter/comment-page-1/#comment-23654</link>
		<dc:creator>Martijn Vreeken</dc:creator>
		<pubDate>Mon, 23 Mar 2009 08:24:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.abbett.org/2007/12/02/using-oracle-with-php-and-codeigniter/#comment-23654</guid>
		<description>I can shine a little light on the XE part of //localhost/XE. It is your instance name (in capitals). I have an Oracle DB with a non-standard instancename (appearantly) and once I put it there, I got connected. So //my.ip.numb.er/INSTANCE did it for me.
Thanx for the info Jonathan!</description>
		<content:encoded><![CDATA[<p>I can shine a little light on the XE part of //localhost/XE. It is your instance name (in capitals). I have an Oracle DB with a non-standard instancename (appearantly) and once I put it there, I got connected. So //my.ip.numb.er/INSTANCE did it for me.<br />
Thanx for the info Jonathan!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: out of repose, in response / archives / CodeIgniter and Oracle</title>
		<link>http://www.abbett.org/2007/12/02/using-oracle-with-php-and-codeigniter/comment-page-1/#comment-6866</link>
		<dc:creator>out of repose, in response / archives / CodeIgniter and Oracle</dc:creator>
		<pubDate>Fri, 10 Oct 2008 18:39:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.abbett.org/2007/12/02/using-oracle-with-php-and-codeigniter/#comment-6866</guid>
		<description>[...] While trying to figure out how to get CodeIgniter to talk to an Oracle database, I came across this great post which covers in part some of the items I mentioned in my previous Oracle-related post. So I got [...]</description>
		<content:encoded><![CDATA[<p>[...] While trying to figure out how to get CodeIgniter to talk to an Oracle database, I came across this great post which covers in part some of the items I mentioned in my previous Oracle-related post. So I got [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ???? World Programs &#187; ????? ????? &#187; CodeIgniter Framework</title>
		<link>http://www.abbett.org/2007/12/02/using-oracle-with-php-and-codeigniter/comment-page-1/#comment-5445</link>
		<dc:creator>???? World Programs &#187; ????? ????? &#187; CodeIgniter Framework</dc:creator>
		<pubDate>Fri, 12 Sep 2008 21:04:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.abbett.org/2007/12/02/using-oracle-with-php-and-codeigniter/#comment-5445</guid>
		<description>[...] Using Oracle with PHP and CodeIgniter [...]</description>
		<content:encoded><![CDATA[<p>[...] Using Oracle with PHP and CodeIgniter [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: CodeIgniter Tutorial Links &#171; Brandontruong&#8217;s Weblog</title>
		<link>http://www.abbett.org/2007/12/02/using-oracle-with-php-and-codeigniter/comment-page-1/#comment-3436</link>
		<dc:creator>CodeIgniter Tutorial Links &#171; Brandontruong&#8217;s Weblog</dc:creator>
		<pubDate>Fri, 27 Jun 2008 07:25:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.abbett.org/2007/12/02/using-oracle-with-php-and-codeigniter/#comment-3436</guid>
		<description>[...] Using Oracle with PHP and CodeIgniter [...]</description>
		<content:encoded><![CDATA[<p>[...] Using Oracle with PHP and CodeIgniter [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Some CodeIgniter Tutorial links &#171; Afruj&#8217;s Weblog</title>
		<link>http://www.abbett.org/2007/12/02/using-oracle-with-php-and-codeigniter/comment-page-1/#comment-2311</link>
		<dc:creator>Some CodeIgniter Tutorial links &#171; Afruj&#8217;s Weblog</dc:creator>
		<pubDate>Fri, 02 May 2008 03:47:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.abbett.org/2007/12/02/using-oracle-with-php-and-codeigniter/#comment-2311</guid>
		<description>[...] Using Oracle with PHP and CodeIgniter [...]</description>
		<content:encoded><![CDATA[<p>[...] Using Oracle with PHP and CodeIgniter [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: CodeIgniter Framework :: TermiT's Blog</title>
		<link>http://www.abbett.org/2007/12/02/using-oracle-with-php-and-codeigniter/comment-page-1/#comment-128</link>
		<dc:creator>CodeIgniter Framework :: TermiT's Blog</dc:creator>
		<pubDate>Sat, 19 Jan 2008 12:46:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.abbett.org/2007/12/02/using-oracle-with-php-and-codeigniter/#comment-128</guid>
		<description>[...] Using Oracle with PHP and CodeIgniter [...]</description>
		<content:encoded><![CDATA[<p>[...] Using Oracle with PHP and CodeIgniter [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tommy Sinaryuda</title>
		<link>http://www.abbett.org/2007/12/02/using-oracle-with-php-and-codeigniter/comment-page-1/#comment-123</link>
		<dc:creator>Tommy Sinaryuda</dc:creator>
		<pubDate>Sat, 12 Jan 2008 16:36:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.abbett.org/2007/12/02/using-oracle-with-php-and-codeigniter/#comment-123</guid>
		<description>Hello...

how to configure if we use PHP ADODB library to connect database with oracle 9.2 + codeigniter?</description>
		<content:encoded><![CDATA[<p>Hello&#8230;</p>
<p>how to configure if we use PHP ADODB library to connect database with oracle 9.2 + codeigniter?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
