<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>OCILIB (C Driver for Oracle) - Open source C library for accessing Oracle databases &#187; Blog</title>
	<atom:link href="http://orclib.sourceforge.net/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://orclib.sourceforge.net</link>
	<description>OCILIB (C Driver for Oracle) - Open source C library for accessing Oracle databases</description>
	<lastBuildDate>Tue, 26 Mar 2013 23:56:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Working on OCILIB C++ support</title>
		<link>http://orclib.sourceforge.net/2013/03/working-on-ocilib-c-support/</link>
		<comments>http://orclib.sourceforge.net/2013/03/working-on-ocilib-c-support/#comments</comments>
		<pubDate>Tue, 26 Mar 2013 23:54:19 +0000</pubDate>
		<dc:creator>Vincent Rogier</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://orclib.sourceforge.net/?p=757</guid>
		<description><![CDATA[Hello all, I finally decided to work on a C++ wrapper around OCILIB ! It will be implemented as a single C++ header file that will offer C++ classes wrapping the OCILIB C API&#8230; If the results sounds good, the next OCILIB release will include this C++ header to simplify C++ developper&#8217;s life If any [...]]]></description>
			<content:encoded><![CDATA[<p>Hello all,</p>
<p>I finally decided to work on a C++ wrapper around OCILIB !</p>
<p>It will be implemented as a single C++ header file that will offer C++ classes wrapping the OCILIB C API&#8230;</p>
<p>If the results sounds good, the next OCILIB release  will include this C++ header to simplify C++ developper&#8217;s life <img src='http://orclib.sourceforge.net/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>If any of you are interested, drop me a email !!</p>
<p>Here is an example of my early basic implementation :</p>
<pre lang="c++" line="1">
#include "ocilib++"

using namespace ocilib;

int main(int argc, char* argv[])
{
    Environment::Initialize(Environment::EnvironmentDefault);

    try
    {
        Connection con("db", "usr", "pwd", Connection::SessionDefault);
        std::cout << con.getServerVersion() << std::endl;

        Statement st(con);
        st.execute("select table_name from user_tables");

        Resultset rs(st);
        while (rs.fetchNext())
        {
            std::cout << rs.getString(1) << std::endl;
        }

        Lob lob(con, Lob::LobTypeClob);
        std::cout << "char written " << lob.write("test") << std::endl;
        lob.seek(Lob::LobSeekSet, 0);
        std::cout << lob.read(4) << std::endl;
    }
    catch(Exception &#038;ex)
    {
         std::cout << ex.what() << std::endl;
    }

    Environment::Cleanup();
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://orclib.sourceforge.net/2013/03/working-on-ocilib-c-support/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OCILIB v3.12.1 now available for download !</title>
		<link>http://orclib.sourceforge.net/2013/03/ocilib-v3-12-1-now-available-for-download/</link>
		<comments>http://orclib.sourceforge.net/2013/03/ocilib-v3-12-1-now-available-for-download/#comments</comments>
		<pubDate>Tue, 05 Mar 2013 19:31:38 +0000</pubDate>
		<dc:creator>Vincent Rogier</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://orclib.sourceforge.net/?p=753</guid>
		<description><![CDATA[Hello all, OCILIB v3.12.1 is now available for download ! Fixed Unicode support (OCI_CHARSET_WIDE and OCI_CHARSET_MIXED) Miscellaneous fixes See the complete v3.12.1 change log here I apologize for releases 3.10.x and 3.11.x that have introduced issues on stable features !! This happened mainly because of corrupted test suites that should have reported errors. Since I [...]]]></description>
			<content:encoded><![CDATA[<p>Hello all,</p>
<p>
OCILIB v3.12.1 is now <a href="http://orclib.sourceforge.net/download/"><u>available for download</u></a> ! </p>
<ul>
<li>Fixed Unicode support (OCI_CHARSET_WIDE and OCI_CHARSET_MIXED)</li>
<li>Miscellaneous fixes</li>
</ul>
<p>See the <a href="http://orclib.sourceforge.net/public/changelogs/ocilib-changelog-v3.12.1.txt" target="_blank"><u>complete v3.12.1 change log here</u></a></p>
<p>I apologize for releases 3.10.x and 3.11.x that have introduced issues on stable features !!</p>
<p>This happened mainly because of corrupted test suites that should have reported errors. Since I have fix my test suite. But to be honest, they do not convert the full OCILIB API. Each new feature is tested upon its initial release but not necessary in later releases. </p>
<p>I did not start unit tests in early release of OCILIB. And building now a full unit test suite for OCILIB is a huge task and i can&#8217;t find the time to work on it as I work on OCILIB on my spare time.</p>
<p>If anybody is interested in helping me building a complete unit test suite for OCILIB, don&#8217;t hesitate to contact me <img src='http://orclib.sourceforge.net/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Get the release and enjoy it !</p>
<p>Vincent
</ul>
]]></content:encoded>
			<wfw:commentRss>http://orclib.sourceforge.net/2013/03/ocilib-v3-12-1-now-available-for-download/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OCILIB v3.12.0 now available for download !</title>
		<link>http://orclib.sourceforge.net/2013/02/ocilib-v3-12-0-now-available-for-download/</link>
		<comments>http://orclib.sourceforge.net/2013/02/ocilib-v3-12-0-now-available-for-download/#comments</comments>
		<pubDate>Wed, 06 Feb 2013 22:35:01 +0000</pubDate>
		<dc:creator>Vincent Rogier</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://orclib.sourceforge.net/?p=746</guid>
		<description><![CDATA[Hello all, OCILIB v3.12.0 is now available for download ! Added support for lob prefetching introduced in 11gR1 Enhanced and fixed Direct Path API Fixed Oracle Streams AQ (Advanced Queues) asynchrounous notifications Fixed numeric/ string conversions Miscellaneous fixes See the complete v3.12.0 change log here Get the release and enjoy it ! Vincent]]></description>
			<content:encoded><![CDATA[<p>Hello all,</p>
<p>
OCILIB v3.12.0 is now <a href="http://orclib.sourceforge.net/download/"><u>available for download</u></a> ! </p>
<ul>
<li>Added support for lob prefetching introduced in 11gR1</li>
<li>Enhanced and fixed Direct Path API</li>
<li>Fixed Oracle Streams AQ (Advanced Queues) asynchrounous notifications</li>
<li>Fixed numeric/ string conversions</li>
<li>Miscellaneous fixes</li>
</ul>
<p>See the <a href="http://orclib.sourceforge.net/public/changelogs/ocilib-changelog-v3.12.0.txt" target="_blank"><u>complete v3.12.0 change log here</u></a></p>
<p>Get the release and enjoy it !</p>
<p>Vincent
</ul>
]]></content:encoded>
			<wfw:commentRss>http://orclib.sourceforge.net/2013/02/ocilib-v3-12-0-now-available-for-download/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OCILIB v3.11.1 now available for download !</title>
		<link>http://orclib.sourceforge.net/2012/12/ocilib-v3-11-1-now-available-for-download/</link>
		<comments>http://orclib.sourceforge.net/2012/12/ocilib-v3-11-1-now-available-for-download/#comments</comments>
		<pubDate>Thu, 20 Dec 2012 11:46:44 +0000</pubDate>
		<dc:creator>Vincent Rogier</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://orclib.sourceforge.net/?p=730</guid>
		<description><![CDATA[Hello all, OCILIB v3.11.1 is now available for download ! Fixed broken support for Oracle Database Change notifications See the complete v3.11.1 change log here Get the release and enjoy it ! Vincent]]></description>
			<content:encoded><![CDATA[<p>Hello all,</p>
<p>
OCILIB v3.11.1 is now <a href="http://orclib.sourceforge.net/download/"><u>available for download</u></a> ! </p>
<ul>
<li>Fixed broken support for Oracle Database Change notifications</li>
</ul>
<p>See the <a href="http://orclib.sourceforge.net/public/changelogs/ocilib-changelog-v3.11.1.txt" target="_blank"><u>complete v3.11.1 change log here</u></a></p>
<p>Get the release and enjoy it !</p>
<p>Vincent
</ul>
]]></content:encoded>
			<wfw:commentRss>http://orclib.sourceforge.net/2012/12/ocilib-v3-11-1-now-available-for-download/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OCILIB v3.11.0 now available for download !</title>
		<link>http://orclib.sourceforge.net/2012/12/ocilib-v3-11-0-now-available-for-download/</link>
		<comments>http://orclib.sourceforge.net/2012/12/ocilib-v3-11-0-now-available-for-download/#comments</comments>
		<pubDate>Wed, 12 Dec 2012 21:12:04 +0000</pubDate>
		<dc:creator>Vincent Rogier</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://orclib.sourceforge.net/?p=723</guid>
		<description><![CDATA[Hello all, OCILIB v3.11.0 is now available for download ! Extended Oracle Streams AQ (Advanced Queues) support Fixed And Enhanced support of BINARY FLOAT and BINARY DOUBLE types Miscellaneous changes Miscellaneous fixes See the complete v3.11.0 change log here Get the release and enjoy it ! Vincent]]></description>
			<content:encoded><![CDATA[<p>Hello all,</p>
<p>
OCILIB v3.11.0 is now <a href="http://orclib.sourceforge.net/download/"><u>available for download</u></a> ! </p>
<ul>
<li>Extended Oracle Streams AQ (Advanced Queues) support</li>
<li>Fixed And Enhanced support of BINARY FLOAT and BINARY DOUBLE types</li>
<li>Miscellaneous changes</li>
<li>Miscellaneous fixes</li>
</ul>
<p>See the <a href="http://orclib.sourceforge.net/public/changelogs/ocilib-changelog-v3.11.0.txt" target="_blank"><u>complete v3.11.0 change log here</u></a></p>
<p>Get the release and enjoy it !</p>
<p>Vincent
</ul>
]]></content:encoded>
			<wfw:commentRss>http://orclib.sourceforge.net/2012/12/ocilib-v3-11-0-now-available-for-download/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
