<?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 on: Showing SQL Statements in script/console</title>
	<atom:link href="http://ryanbigg.com/2008/12/showing-sql-statements-in-scriptconsole/feed/" rel="self" type="application/rss+xml" />
	<link>http://ryanbigg.com/2008/12/showing-sql-statements-in-scriptconsole/</link>
	<description>Life &#38; Everything Else</description>
	<lastBuildDate>Wed, 10 Mar 2010 07:34:44 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: SQL Tutorials</title>
		<link>http://ryanbigg.com/2008/12/showing-sql-statements-in-scriptconsole/comment-page-1/#comment-11416</link>
		<dc:creator>SQL Tutorials</dc:creator>
		<pubDate>Fri, 01 May 2009 02:18:43 +0000</pubDate>
		<guid isPermaLink="false">http://frozenplague.net/?p=402#comment-11416</guid>
		<description>&lt;p&gt;Does anyone know if there is another language or set of commands beside SQL for talking with databases? &lt;/p&gt;

&lt;p&gt;I&#039;m working on a project and am doing some research thanks&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Does anyone know if there is another language or set of commands beside SQL for talking with databases? </p>

<p>I&#8217;m working on a project and am doing some research thanks</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Alexwebmaster</title>
		<link>http://ryanbigg.com/2008/12/showing-sql-statements-in-scriptconsole/comment-page-1/#comment-8516</link>
		<dc:creator>Alexwebmaster</dc:creator>
		<pubDate>Tue, 03 Mar 2009 14:30:21 +0000</pubDate>
		<guid isPermaLink="false">http://frozenplague.net/?p=402#comment-8516</guid>
		<description>&lt;p&gt;Hello webmaster 
I would like to share with you a link to your site 
write me here preonrelt@mail.ru&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hello webmaster 
I would like to share with you a link to your site 
write me here <a href="mailto:preonrelt@mail.ru">preonrelt@mail.ru</a></p>]]></content:encoded>
	</item>
	<item>
		<title>By: Liam Morley</title>
		<link>http://ryanbigg.com/2008/12/showing-sql-statements-in-scriptconsole/comment-page-1/#comment-7462</link>
		<dc:creator>Liam Morley</dc:creator>
		<pubDate>Fri, 30 Jan 2009 11:15:01 +0000</pubDate>
		<guid isPermaLink="false">http://frozenplague.net/?p=402#comment-7462</guid>
		<description>&lt;p&gt;I&#039;m all about the irbrc.
&lt;pre lang=&#039;ruby&#039;&gt;
if ENV.include?(&#039;RAILS&lt;em&gt;ENV&#039;) &amp;&amp; !Object.const&lt;/em&gt;defined?(&#039;RAILS&lt;em&gt;DEFAULT&lt;/em&gt;LOGGER&#039;)
  require &#039;logger&#039;
  RAILS&lt;em&gt;DEFAULT&lt;/em&gt;LOGGER = Logger.new(STDOUT)
end
&lt;/pre&gt;&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I&#8217;m all about the irbrc.
<pre lang='ruby'>
if ENV.include?('RAILS<em>ENV') &amp;&amp; !Object.const</em>defined?('RAILS<em>DEFAULT</em>LOGGER')
  require 'logger'
  RAILS<em>DEFAULT</em>LOGGER = Logger.new(STDOUT)
end
</pre></p>]]></content:encoded>
	</item>
	<item>
		<title>By: Tim Riley</title>
		<link>http://ryanbigg.com/2008/12/showing-sql-statements-in-scriptconsole/comment-page-1/#comment-6575</link>
		<dc:creator>Tim Riley</dc:creator>
		<pubDate>Tue, 30 Dec 2008 12:41:36 +0000</pubDate>
		<guid isPermaLink="false">http://frozenplague.net/?p=402#comment-6575</guid>
		<description>&lt;p&gt;I use a different approach, sticking some stuff into $HOME/.irbrc:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;
if ENV[&#039;RAILS_ENV&#039;]
  # Called after the irb session is initialized and Rails has been loaded
  IRB.conf[:IRB_RC] = Proc.new do
    logger = Logger.new(STDOUT)
    ActiveRecord::Base.logger = logger
    ActiveResource::Base.logger = logger
  end
end
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;I picked it up from one of the Rails blogs out there, probably one of these: http://delicious.com/timriley/irb&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I use a different approach, sticking some stuff into $HOME/.irbrc:</p>

<pre><code>
if ENV['RAILS_ENV']
  # Called after the irb session is initialized and Rails has been loaded
  IRB.conf[:IRB_RC] = Proc.new do
    logger = Logger.new(STDOUT)
    ActiveRecord::Base.logger = logger
    ActiveResource::Base.logger = logger
  end
end
</code></pre>

<p>I picked it up from one of the Rails blogs out there, probably one of these: <a href="http://delicious.com/timriley/irb" rel="nofollow">http://delicious.com/timriley/irb</a></p>]]></content:encoded>
	</item>
	<item>
		<title>By: Radar</title>
		<link>http://ryanbigg.com/2008/12/showing-sql-statements-in-scriptconsole/comment-page-1/#comment-6540</link>
		<dc:creator>Radar</dc:creator>
		<pubDate>Mon, 29 Dec 2008 01:17:31 +0000</pubDate>
		<guid isPermaLink="false">http://frozenplague.net/?p=402#comment-6540</guid>
		<description>&lt;p&gt;Hey that&#039;s a good idea!&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hey that&#8217;s a good idea!</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Ashley Williams</title>
		<link>http://ryanbigg.com/2008/12/showing-sql-statements-in-scriptconsole/comment-page-1/#comment-6433</link>
		<dc:creator>Ashley Williams</dc:creator>
		<pubDate>Wed, 24 Dec 2008 11:24:27 +0000</pubDate>
		<guid isPermaLink="false">http://frozenplague.net/?p=402#comment-6433</guid>
		<description>&lt;p&gt;Awesome! Makes a cool alias (with a clear in between also):&lt;/p&gt;

&lt;p&gt;alias rcon=&quot;tail -f log/development.log &amp; clear &amp;&amp; script/console&quot;&lt;/p&gt;

&lt;p&gt;Thanks :)&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Awesome! Makes a cool alias (with a clear in between also):</p>

<p>alias rcon=&#8221;tail -f log/development.log &amp; clear &amp;&amp; script/console&#8221;</p>

<p>Thanks :)</p>]]></content:encoded>
	</item>
</channel>
</rss>
