<?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: CakePHP and Oracle &#8211; Handling CLOB fields</title>
	<atom:link href="http://nik.chankov.net/2008/01/03/cakephp-and-oracle-handling-clob-fields/feed/" rel="self" type="application/rss+xml" />
	<link>http://nik.chankov.net/2008/01/03/cakephp-and-oracle-handling-clob-fields/</link>
	<description>Technical weblog for articles and titorials related to web development.</description>
	<lastBuildDate>Mon, 15 Mar 2010 22:14:07 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: CakePHP : signets remarquables du 06/01/2009 au 07/01/2009 &#124; Cherry on the...</title>
		<link>http://nik.chankov.net/2008/01/03/cakephp-and-oracle-handling-clob-fields/comment-page-1/#comment-528</link>
		<dc:creator>CakePHP : signets remarquables du 06/01/2009 au 07/01/2009 &#124; Cherry on the...</dc:creator>
		<pubDate>Wed, 07 Jan 2009 11:02:57 +0000</pubDate>
		<guid isPermaLink="false">http://nik.chankov.net/2008/01/03/cakephp-and-oracle-handling-clob-fields/#comment-528</guid>
		<description>[...] CakePHP and Oracle - Handling CLOB fields [...]</description>
		<content:encoded><![CDATA[<p>[...] CakePHP and Oracle &#8211; Handling CLOB fields [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nik Chankov</title>
		<link>http://nik.chankov.net/2008/01/03/cakephp-and-oracle-handling-clob-fields/comment-page-1/#comment-95</link>
		<dc:creator>Nik Chankov</dc:creator>
		<pubDate>Tue, 12 Feb 2008 08:20:55 +0000</pubDate>
		<guid isPermaLink="false">http://nik.chankov.net/2008/01/03/cakephp-and-oracle-handling-clob-fields/#comment-95</guid>
		<description>@cedsav, - nice approach, but my philosophy is not to touch cake libs at all :) I would really like if CakePHP support this feature natively, but so far it isn&#039;t and our way was to create behaviour.
I primary working in CakePHP 1.2 and because there are Behaviours as feature we decided to use it.

Anyway, there are many other problems with dbo_oracle which are not sorted so far. The first one which I can mention is not infinite IN() function. That function accept max 1000 elements and CakePHP use it a lot with the relations. 

Hopefully one day we will have fully working Cake with Oracle. :)</description>
		<content:encoded><![CDATA[<p>@cedsav, &#8211; nice approach, but my philosophy is not to touch cake libs at all <img src='http://nik.chankov.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  I would really like if CakePHP support this feature natively, but so far it isn&#8217;t and our way was to create behaviour.<br />
I primary working in CakePHP 1.2 and because there are Behaviours as feature we decided to use it.</p>
<p>Anyway, there are many other problems with dbo_oracle which are not sorted so far. The first one which I can mention is not infinite IN() function. That function accept max 1000 elements and CakePHP use it a lot with the relations. </p>
<p>Hopefully one day we will have fully working Cake with Oracle. <img src='http://nik.chankov.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cedsav</title>
		<link>http://nik.chankov.net/2008/01/03/cakephp-and-oracle-handling-clob-fields/comment-page-1/#comment-94</link>
		<dc:creator>cedsav</dc:creator>
		<pubDate>Tue, 12 Feb 2008 04:01:18 +0000</pubDate>
		<guid isPermaLink="false">http://nik.chankov.net/2008/01/03/cakephp-and-oracle-handling-clob-fields/#comment-94</guid>
		<description>here it is:
https://trac.cakephp.org/attachment/ticket/2294/dbo_oracle.php</description>
		<content:encoded><![CDATA[<p>here it is:<br />
<a href="https://trac.cakephp.org/attachment/ticket/2294/dbo_oracle.php" rel="nofollow">https://trac.cakephp.org/attachment/ticket/2294/dbo_oracle.php</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cedsav</title>
		<link>http://nik.chankov.net/2008/01/03/cakephp-and-oracle-handling-clob-fields/comment-page-1/#comment-93</link>
		<dc:creator>cedsav</dc:creator>
		<pubDate>Tue, 12 Feb 2008 03:51:15 +0000</pubDate>
		<guid isPermaLink="false">http://nik.chankov.net/2008/01/03/cakephp-and-oracle-handling-clob-fields/#comment-93</guid>
		<description>Actually, I have a working dbo_oracle.php if you&#039;re interested (for cakePHP v1.1.19). It uses the same technique, bind variables, but directly in the driver, so no need for a behavior.

I posted a ticket a long time ago, but it didn&#039;t go very far: https://trac.cakephp.org/ticket/2294

I&#039;ll just add the file to the ticket if you want to download it.</description>
		<content:encoded><![CDATA[<p>Actually, I have a working dbo_oracle.php if you&#8217;re interested (for cakePHP v1.1.19). It uses the same technique, bind variables, but directly in the driver, so no need for a behavior.</p>
<p>I posted a ticket a long time ago, but it didn&#8217;t go very far: <a href="https://trac.cakephp.org/ticket/2294" rel="nofollow">https://trac.cakephp.org/ticket/2294</a></p>
<p>I&#8217;ll just add the file to the ticket if you want to download it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Thompson</title>
		<link>http://nik.chankov.net/2008/01/03/cakephp-and-oracle-handling-clob-fields/comment-page-1/#comment-88</link>
		<dc:creator>Chris Thompson</dc:creator>
		<pubDate>Wed, 06 Feb 2008 15:56:43 +0000</pubDate>
		<guid isPermaLink="false">http://nik.chankov.net/2008/01/03/cakephp-and-oracle-handling-clob-fields/#comment-88</guid>
		<description>Thanks for the great job with the behavior.  We started using it and found that it had some issues.

I published our changes at http://www.thompsonbd.com/blog.php?title=CakePHP+Clob+Behavior</description>
		<content:encoded><![CDATA[<p>Thanks for the great job with the behavior.  We started using it and found that it had some issues.</p>
<p>I published our changes at <a href="http://www.thompsonbd.com/blog.php?title=CakePHP+Clob+Behavior" rel="nofollow">http://www.thompsonbd.com/blog.php?title=CakePHP+Clob+Behavior</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
