<?xml version="1.0" encoding="UTF-8"?><!-- generator="orablog/0.3+" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments on: Column Names</title>
	<link>http://www.lamp2lapo.com/2006/09/25/column-names/</link>
	<description>Helping PHP developers migrate from MySQL to Oracle</description>
	<pubDate>Tue, 07 Oct 2008 09:59:57 +0000</pubDate>
	<generator>http://www.orablog.org/?v=0.3+</generator>

	<item>
		<title>by: TopKat</title>
		<link>http://www.lamp2lapo.com/2006/09/25/column-names/#comment-5</link>
		<pubDate>Fri, 10 Nov 2006 12:21:21 +0000</pubDate>
		<guid>http://www.lamp2lapo.com/2006/09/25/column-names/#comment-5</guid>
					<description>Hi,

Oracle can return case-sensitive column-names:
SQL&#62; create table test (id number, thing varchar2(10));

Table created.

SQL&#62; insert into test(id, thing) values (1, 'One');

1 row created.

SQL&#62; commit;

Commit complete.

SQL&#62; select id as Id, thing as Thing from test;

        ID THING           select id as "Id", thing as "Thing" from test;

        Id Thing          </description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Oracle can return case-sensitive column-names:<br />
SQL&gt; create table test (id number, thing varchar2(10));</p>
<p>Table created.</p>
<p>SQL&gt; insert into test(id, thing) values (1, &#8216;One&#8217;);</p>
<p>1 row created.</p>
<p>SQL&gt; commit;</p>
<p>Commit complete.</p>
<p>SQL&gt; select id as Id, thing as Thing from test;</p>
<p>        ID THING           select id as &#8220;Id&#8221;, thing as &#8220;Thing&#8221; from test;</p>
<p>        Id Thing
</p>
]]></content:encoded>
				</item>
</channel>
</rss>
