<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://africadotnet.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>General</title><link>http://africadotnet.com/forums/30.aspx</link><description>Other development discussions</description><dc:language>en</dc:language><generator>CommunityServer 2008.5 SP1 (Build: 31106.3070)</generator><item><title>Re: Today's Byte #3: Developing For Oracle Databases</title><link>http://africadotnet.com/forums/thread/108.aspx</link><pubDate>Thu, 08 Oct 2009 05:32:55 GMT</pubDate><guid isPermaLink="false">bb2961d9-8183-4757-8f93-8f5e67e8c13b:108</guid><dc:creator>Stephen Ebichondo</dc:creator><slash:comments>0</slash:comments><comments>http://africadotnet.com/forums/thread/108.aspx</comments><wfw:commentRss>http://africadotnet.com/forums/commentrss.aspx?SectionID=30&amp;PostID=108</wfw:commentRss><description>&lt;p&gt;Thanks guys this is usually a big challenge when developing a site that may need to support different data stores.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Re: Today's Byte #3: Developing For Oracle Databases</title><link>http://africadotnet.com/forums/thread/106.aspx</link><pubDate>Wed, 07 Oct 2009 10:26:02 GMT</pubDate><guid isPermaLink="false">bb2961d9-8183-4757-8f93-8f5e67e8c13b:106</guid><dc:creator>gutsboy</dc:creator><slash:comments>0</slash:comments><comments>http://africadotnet.com/forums/thread/106.aspx</comments><wfw:commentRss>http://africadotnet.com/forums/commentrss.aspx?SectionID=30&amp;PostID=106</wfw:commentRss><description>&lt;p&gt;Thanks for pointing out that Stephen, I had overlooked it on that&amp;nbsp;perspective&amp;nbsp;and always compared LINQ to other ORM frameworks which always seem to have a common defacto - support for multiple db platforms. I guess &lt;a target="_blank" title="IBATIS " href="http://ibatis.apache.org/dotnet.cgi"&gt;IBATIS &lt;/a&gt;in combi with &lt;a target="_blank" title="Abator.NET" href="http://sourceforge.net/projects/abatornet/"&gt;Abator.NET&lt;/a&gt; would achieve the cross-db-platform ability.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Re: Today's Byte #3: Developing For Oracle Databases</title><link>http://africadotnet.com/forums/thread/105.aspx</link><pubDate>Wed, 07 Oct 2009 06:39:52 GMT</pubDate><guid isPermaLink="false">bb2961d9-8183-4757-8f93-8f5e67e8c13b:105</guid><dc:creator>Rad</dc:creator><slash:comments>0</slash:comments><comments>http://africadotnet.com/forums/thread/105.aspx</comments><wfw:commentRss>http://africadotnet.com/forums/commentrss.aspx?SectionID=30&amp;PostID=105</wfw:commentRss><description>&lt;p&gt;Since Oracle are deafeningly silent on the matter, currently the best way is to use a third party provider. I keep hearing good things about &lt;a href="http://www.devart.com/dotconnect/oracle/"&gt;Devart dotConnect&lt;/a&gt;. You could also check out the open source &lt;a href="http://code.google.com/p/dblinq2007/"&gt;dbLinq&lt;/a&gt; or &lt;a href="http://www.codeplex.com/LinqToOracle"&gt;LinqToOracle&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Re: Today's Byte #3: Developing For Oracle Databases</title><link>http://africadotnet.com/forums/thread/104.aspx</link><pubDate>Wed, 07 Oct 2009 05:20:01 GMT</pubDate><guid isPermaLink="false">bb2961d9-8183-4757-8f93-8f5e67e8c13b:104</guid><dc:creator>Stephen Ebichondo</dc:creator><slash:comments>0</slash:comments><comments>http://africadotnet.com/forums/thread/104.aspx</comments><wfw:commentRss>http://africadotnet.com/forums/commentrss.aspx?SectionID=30&amp;PostID=104</wfw:commentRss><description>&lt;p&gt;Hey Rad, how would i use LINQ  when developing against an Oracle database???&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Today's Byte #3: Developing For Oracle Databases</title><link>http://africadotnet.com/forums/thread/103.aspx</link><pubDate>Tue, 06 Oct 2009 14:40:24 GMT</pubDate><guid isPermaLink="false">bb2961d9-8183-4757-8f93-8f5e67e8c13b:103</guid><dc:creator>Rad</dc:creator><slash:comments>0</slash:comments><comments>http://africadotnet.com/forums/thread/103.aspx</comments><wfw:commentRss>http://africadotnet.com/forums/commentrss.aspx?SectionID=30&amp;PostID=103</wfw:commentRss><description>&lt;p&gt;If you&amp;#39;re doing development against an Oracle database, you can use the built in Oracle client, System.Data.OracleClient. However this is a bad idea for a two reasons:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;It will be &lt;a href="http://blogs.msdn.com/adonet/archive/2009/06/15/system-data-oracleclient-update.aspx"&gt;deprecated in .NET 4.0&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Oracle&amp;#39;s provider, &lt;a href="http://www.oracle.com/technology/tech/windows/odpnet/index.html"&gt;ODP.NET&lt;/a&gt; is better in several ways:
&lt;ul&gt;
&lt;li&gt;Faster&lt;/li&gt;
&lt;li&gt;Supports more Oracle features: Associative arrays, server side cursors, etc&lt;/li&gt;
&lt;li&gt;Better support for large character/binary types (LOB)&lt;/li&gt;
&lt;li&gt;Supports caching&lt;/li&gt;
&lt;li&gt;Is updated on Oracle&amp;#39;s technology cycle, rather than the .NET framework cycle&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ol&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>