<?xml version="1.0"?>
<rss version="2.0">
  <channel>
    <title>PHPDeveloper.org</title>
    <link>http://www.phpdeveloper.org</link>
    <description>Up-to-the Minute PHP News, views and community</description>
    <language>en-us</language>
    <pubDate>Fri, 24 May 2013 02:16:12 -0500</pubDate>
    <ttl>30</ttl>
    <item>
      <title><![CDATA[Chris Jones' Blog: More on PHP and Oracle 11gR2 Improvements to Client Result Caching]]></title>
      <guid>http://www.phpdeveloper.org/news/15997</guid>
      <link>http://www.phpdeveloper.org/news/15997</link>
      <description><![CDATA[<p>
<i>Chris Jones</i> has posted more information to his Oracle blog about the <a href="http://blogs.oracle.com/opal/2011/03/more_on_php_and_oracle_11gr2_i.html">caching and other improvements</a> that come along with the Oracle 11gR2 release that can be used in PHP applications.
</p>
<blockquote>
Oracle 11.2 brought several improvements to Client Result Caching. CRC is way for the results of queries to be cached in the database client process for reuse. [...] PHP OCI8 as a "client" of the database can use CRC.  The cache is per-process, so plan carefully before caching large data sets.  Tables that are candidates for caching are look-up tables where the network transfer cost dominates.
</blockquote>
<p>
Like many of the other server-side tools Oracle has to offer, it's pretty simple to enable this caching. Before you had to add a custom bit to your query to tell it to enable the caching. Now it's as simple as setting it up on the CREATE or ALTER for the table - nothing extra for the developer to do.
</p>]]></description>
      <pubDate>Fri, 04 Mar 2011 09:56:33 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[Nessa's Blog: Convert Database to UTF-8]]></title>
      <guid>http://www.phpdeveloper.org/news/9237</guid>
      <link>http://www.phpdeveloper.org/news/9237</link>
      <description><![CDATA[<p>
<i>Nessa</i> has <a href="http://www.v-nessa.net/2007/12/06/convert-database-to-utf-8">posted a quick way</a> to convert a database from whatever character set it's currently on over to UTF-8 with a handy PHP script.
</p>
<blockquote>
When you're dealing with special characters in a database, you have to make sure that the charset and collation are dumped *with* the database, so that when you move it to another server the tables and data create properly. The biggest annoyance so far is converting tables back to UTF-8, as when this is done through the MySQL shell or phpmyadmin is had to be done table-by-table.
</blockquote>
<p>
<a href="http://www.v-nessa.net/2007/12/06/convert-database-to-utf-8">The script</a> logs into the database and pulls all of the table information out (could be a lengthy list depending on the database) and runs an ALTER TABLE to change its character set to 'UTF8'.
</p>]]></description>
      <pubDate>Thu, 13 Dec 2007 10:23:00 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[Vinu Thomas' Blog: Modifying your MySQL databases to be UTF-8 compliant]]></title>
      <guid>http://www.phpdeveloper.org/news/6982</guid>
      <link>http://www.phpdeveloper.org/news/6982</link>
      <description><![CDATA[<p>
There's a <a href="http://blogs.vinuthomas.com/2006/12/22/modifying-your-mysql-databases-to-be-utf-8-compliant/">quick tip</a> from <i>Vinu Thomas</i> on his blog for anyone having issues with UTF-8 data in a MySQL database (as accessed by PHP).
</p>
<blockquote>
Most of us have had problems with UTF-8 problems in PHP and MySQL. Here's how to modify your database and table to be UTF-8 compliant. Most of the time we do set the character set to utf8 but forget to set the collation set to utf8.
</blockquote>
<p>
He <a href="http://blogs.vinuthomas.com/2006/12/22/modifying-your-mysql-databases-to-be-utf-8-compliant/">includes both SQL statements</a> you'll need to make the transition - two ALTER statements that update the properties of a database and change the encoding on a specific table to UTF-8 compatibility.
</p>]]></description>
      <pubDate>Thu, 28 Dec 2006 07:47:00 -0600</pubDate>
    </item>
  </channel>
</rss>
