<?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 for Extra Connections Ltd</title>
	<atom:link href="http://www.extraconnections.co.uk/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://www.extraconnections.co.uk</link>
	<description>Oracle and Internet Solutions from Chris Hunt</description>
	<lastBuildDate>Tue, 22 Jun 2010 23:57:25 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>Comment on Simulating a Two-Dimensional Array in PL/SQL by Philippe</title>
		<link>http://www.extraconnections.co.uk/articles/plsql-array/comment-page-1#comment-3648</link>
		<dc:creator>Philippe</dc:creator>
		<pubDate>Tue, 22 Jun 2010 23:57:25 +0000</pubDate>
		<guid isPermaLink="false">http://extraconnections.co.uk/?page_id=8#comment-3648</guid>
		<description>create or replace
FUNCTION read_mytable (
x IN NUMBER,
y IN NUMBER) RETURN NUMBER IS array_value NUMBER;
  c_multipler CONSTANT NUMBER :=1000;
  TYPE mytabtype IS TABLE OF NUMBER INDEX BY BINARY_INTEGER;
  prec_cep_calculations mytabtype;
  
BEGIN
    array_value:= prec_cep_calculations((x * c_multipler)+ y);
    RETURN array_value;
EXCEPTION
  WHEN NO_DATA_FOUND THEN
    RETURN NULL;
END;

no compile errors  -- SQL Developer version 1.5.5</description>
		<content:encoded><![CDATA[<p>create or replace<br />
FUNCTION read_mytable (<br />
x IN NUMBER,<br />
y IN NUMBER) RETURN NUMBER IS array_value NUMBER;<br />
  c_multipler CONSTANT NUMBER :=1000;<br />
  TYPE mytabtype IS TABLE OF NUMBER INDEX BY BINARY_INTEGER;<br />
  prec_cep_calculations mytabtype;</p>
<p>BEGIN<br />
    array_value:= prec_cep_calculations((x * c_multipler)+ y);<br />
    RETURN array_value;<br />
EXCEPTION<br />
  WHEN NO_DATA_FOUND THEN<br />
    RETURN NULL;<br />
END;</p>
<p>no compile errors  &#8212; SQL Developer version 1.5.5</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simulating a Two-Dimensional Array in PL/SQL by Philippe</title>
		<link>http://www.extraconnections.co.uk/articles/plsql-array/comment-page-1#comment-3647</link>
		<dc:creator>Philippe</dc:creator>
		<pubDate>Tue, 22 Jun 2010 23:54:22 +0000</pubDate>
		<guid isPermaLink="false">http://extraconnections.co.uk/?page_id=8#comment-3647</guid>
		<description>create or replace
PROCEDURE write_mytable(
x IN NUMBER,
y IN NUMBER,
array_value IN NUMBER) IS
  TYPE mytabtype IS TABLE OF NUMBER INDEX BY BINARY_INTEGER;
  c_multipler CONSTANT NUMBER :=1000;
  prec_cep_calculations mytabtype;
  
BEGIN
  prec_cep_calculations ((x * c_multipler) + y) := array_value;
END;

No compile errors</description>
		<content:encoded><![CDATA[<p>create or replace<br />
PROCEDURE write_mytable(<br />
x IN NUMBER,<br />
y IN NUMBER,<br />
array_value IN NUMBER) IS<br />
  TYPE mytabtype IS TABLE OF NUMBER INDEX BY BINARY_INTEGER;<br />
  c_multipler CONSTANT NUMBER :=1000;<br />
  prec_cep_calculations mytabtype;</p>
<p>BEGIN<br />
  prec_cep_calculations ((x * c_multipler) + y) := array_value;<br />
END;</p>
<p>No compile errors</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simulating a Two-Dimensional Array in PL/SQL by Philippe</title>
		<link>http://www.extraconnections.co.uk/articles/plsql-array/comment-page-1#comment-3646</link>
		<dc:creator>Philippe</dc:creator>
		<pubDate>Tue, 22 Jun 2010 23:47:11 +0000</pubDate>
		<guid isPermaLink="false">http://extraconnections.co.uk/?page_id=8#comment-3646</guid>
		<description>create or replace
PROCEDURE write_mytable(
x IN NUMBER,
y IN NUMBER,
array_value IN NUMBER) IS
  mytabtype IS TABLE OF NUMBER INDEXED BY BINARY_INTEGER;
  c_multipler CONSTANT NUMBER :=1000;
  
  prec_cep_calculations mytabtype;
BEGIN
  prec_cep_calculations ((x * c_multipler) + y) := array_value;
END;

Error PLS-00103: Encountered the symbol &quot;IS&quot; when expecting one of the following: constant exception  &lt;a&gt; table long double ref  char  timestamp interval date binary notional character nchar</description>
		<content:encoded><![CDATA[<p>create or replace<br />
PROCEDURE write_mytable(<br />
x IN NUMBER,<br />
y IN NUMBER,<br />
array_value IN NUMBER) IS<br />
  mytabtype IS TABLE OF NUMBER INDEXED BY BINARY_INTEGER;<br />
  c_multipler CONSTANT NUMBER :=1000;</p>
<p>  prec_cep_calculations mytabtype;<br />
BEGIN<br />
  prec_cep_calculations ((x * c_multipler) + y) := array_value;<br />
END;</p>
<p>Error PLS-00103: Encountered the symbol &#8220;IS&#8221; when expecting one of the following: constant exception  <a> table long double ref  char  timestamp interval date binary notional character nchar</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simulating a Two-Dimensional Array in PL/SQL by Philippe</title>
		<link>http://www.extraconnections.co.uk/articles/plsql-array/comment-page-1#comment-3645</link>
		<dc:creator>Philippe</dc:creator>
		<pubDate>Tue, 22 Jun 2010 23:43:46 +0000</pubDate>
		<guid isPermaLink="false">http://extraconnections.co.uk/?page_id=8#comment-3645</guid>
		<description>create or replace
TYPE MYTABTYPE IS TABLE OF NUMBER INDEX BY BINARY_INTEGER;

Error: PLS-00355: use of pl/sql table not allowed in this context</description>
		<content:encoded><![CDATA[<p>create or replace<br />
TYPE MYTABTYPE IS TABLE OF NUMBER INDEX BY BINARY_INTEGER;</p>
<p>Error: PLS-00355: use of pl/sql table not allowed in this context</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Web Design Resources by Kelvin76</title>
		<link>http://www.extraconnections.co.uk/articles/web-design-resources/comment-page-1#comment-3069</link>
		<dc:creator>Kelvin76</dc:creator>
		<pubDate>Thu, 22 Oct 2009 12:14:30 +0000</pubDate>
		<guid isPermaLink="false">http://extraconnections.co.uk/?page_id=27#comment-3069</guid>
		<description>This is not easy work, but the rewards are significant: a stronger civil society where all mem- bers feel included, respected, and responsible for building community. ,</description>
		<content:encoded><![CDATA[<p>This is not easy work, but the rewards are significant: a stronger civil society where all mem- bers feel included, respected, and responsible for building community. ,</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simulating a Two-Dimensional Array in PL/SQL by Oscar</title>
		<link>http://www.extraconnections.co.uk/articles/plsql-array/comment-page-1#comment-3045</link>
		<dc:creator>Oscar</dc:creator>
		<pubDate>Fri, 09 Oct 2009 18:56:45 +0000</pubDate>
		<guid isPermaLink="false">http://extraconnections.co.uk/?page_id=8#comment-3045</guid>
		<description>mytabtype IS TABLE OF NUMBER INDEXED BY BINARY_INTEGER;
          *
ERROR at line 7:
ORA-06550: l�nea 7, columna 14:
PLS-00103: Encountered the symbol &quot;IS&quot; when expecting one of the following:
constant exception 
&lt;a&gt; table long double ref
char</description>
		<content:encoded><![CDATA[<p>mytabtype IS TABLE OF NUMBER INDEXED BY BINARY_INTEGER;<br />
          *<br />
ERROR at line 7:<br />
ORA-06550: l�nea 7, columna 14:<br />
PLS-00103: Encountered the symbol &#8220;IS&#8221; when expecting one of the following:<br />
constant exception<br />
<a> table long double ref<br />
char</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Lightbulb Joke by Susan Moskwa</title>
		<link>http://www.extraconnections.co.uk/blog/lightbulb-joke/comment-page-1#comment-2504</link>
		<dc:creator>Susan Moskwa</dc:creator>
		<pubDate>Wed, 26 Nov 2008 18:49:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.extraconnections.co.uk/blog/lightbulb-joke#comment-2504</guid>
		<description>I laughed so much over this, and I continue to refer my friends to it. Way to capture the essence of an online forum.  ;-)</description>
		<content:encoded><![CDATA[<p>I laughed so much over this, and I continue to refer my friends to it. Way to capture the essence of an online forum.  <img src='http://www.extraconnections.co.uk/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on W3C Multipage Validator by Jelle</title>
		<link>http://www.extraconnections.co.uk/blog/w3c-multipage-validator/comment-page-1#comment-2502</link>
		<dc:creator>Jelle</dc:creator>
		<pubDate>Sun, 28 Sep 2008 12:06:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.extraconnections.co.uk/blog/w3c-multipage-validator#comment-2502</guid>
		<description>Validator.ca doesn&#039;t work anymore. So this is alternative tool: http://www.multipagevalidator.com</description>
		<content:encoded><![CDATA[<p>Validator.ca doesn&#8217;t work anymore. So this is alternative tool: <a href="http://www.multipagevalidator.com" rel="nofollow">http://www.multipagevalidator.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Lightbulb Joke by JohnMu</title>
		<link>http://www.extraconnections.co.uk/blog/lightbulb-joke/comment-page-1#comment-2432</link>
		<dc:creator>JohnMu</dc:creator>
		<pubDate>Tue, 12 Aug 2008 08:35:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.extraconnections.co.uk/blog/lightbulb-joke#comment-2432</guid>
		<description>I hope you continue to enjoy it &amp; stick around a bit :). I loved the joke!</description>
		<content:encoded><![CDATA[<p>I hope you continue to enjoy it &amp; stick around a bit <img src='http://www.extraconnections.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . I loved the joke!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Good ALT Attributes by Michel</title>
		<link>http://www.extraconnections.co.uk/blog/good-alt-attributes/comment-page-1#comment-13</link>
		<dc:creator>Michel</dc:creator>
		<pubDate>Fri, 15 Jun 2007 12:34:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.extraconnections.co.uk/blog/good-alt-attributes#comment-13</guid>
		<description>Interesting find! :-)

I read with much attention the article on the images&#039; ALT, it was very useful, thx :-)</description>
		<content:encoded><![CDATA[<p>Interesting find! <img src='http://www.extraconnections.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>I read with much attention the article on the images&#8217; ALT, it was very useful, thx <img src='http://www.extraconnections.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>
