<?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>Random Randy Ramblings &#187; database</title>
	<atom:link href="http://randymelder.com/tag/database/feed/" rel="self" type="application/rss+xml" />
	<link>http://randymelder.com</link>
	<description>Stuff that was so important, I had to write it down.</description>
	<lastBuildDate>Mon, 24 May 2010 22:24:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>A case for CASE in your SQL</title>
		<link>http://randymelder.com/2009/12/22/a-case-for-case-in-your-sql/</link>
		<comments>http://randymelder.com/2009/12/22/a-case-for-case-in-your-sql/#comments</comments>
		<pubDate>Tue, 22 Dec 2009 13:59:11 +0000</pubDate>
		<dc:creator>Randy Melder</dc:creator>
				<category><![CDATA[Apache / PHP / MySQL]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[sql]]></category>

		<guid isPermaLink="false">http://www.randymelder.com/?p=168</guid>
		<description><![CDATA[I&#8217;m going to add more to this later, but for now&#8230; SQL CASE scenario #1 Ever wanted to offer quantity discounts for shoppers? Here&#8217;s an example of a trivial implementation of the CASE condition in MySQL to get the job done. mysql> SET @cart_quantity := 3; Query OK, 0 rows affected (0.00 sec) mysql> select [...]]]></description>
		<wfw:commentRss>http://randymelder.com/2009/12/22/a-case-for-case-in-your-sql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to &#8211; LIKE &#8211; use prepared statements</title>
		<link>http://randymelder.com/2009/09/26/how-to-like-use-prepared-statements/</link>
		<comments>http://randymelder.com/2009/09/26/how-to-like-use-prepared-statements/#comments</comments>
		<pubDate>Sat, 26 Sep 2009 12:05:37 +0000</pubDate>
		<dc:creator>Randy Melder</dc:creator>
				<category><![CDATA[Apache / PHP / MySQL]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[clause]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[pdo]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[prepared]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[statements]]></category>

		<guid isPermaLink="false">http://www.randymelder.com/?p=114</guid>
		<description><![CDATA[I was going to do the whole Valley Girl theme for this post, but decided that was lame. So while converting an internal application query into a user-input web query when I stumbled across a problem. My prepared statement was not throwing an error and not giving me results. It took me a while to [...]]]></description>
		<wfw:commentRss>http://randymelder.com/2009/09/26/how-to-like-use-prepared-statements/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL Conference 2009</title>
		<link>http://randymelder.com/2009/04/20/mysql-conference-2009/</link>
		<comments>http://randymelder.com/2009/04/20/mysql-conference-2009/#comments</comments>
		<pubDate>Mon, 20 Apr 2009 13:46:53 +0000</pubDate>
		<dc:creator>Randy Melder</dc:creator>
				<category><![CDATA[Asides]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://www.randymelder.com/?p=85</guid>
		<description><![CDATA[A fast way to grow your skills The 7th annual MySQL Conference &#038; Expo, co-presented by Sun Microsystems, MySQL and O&#8217;Reilly Media. Happening April 20-23, 2009 in Santa Clara, CA, at the Santa Clara Convention Center and Hyatt Regency Santa Clara, brings over 2,000 open source and database enthusiasts together to harness the power of [...]]]></description>
		<wfw:commentRss>http://randymelder.com/2009/04/20/mysql-conference-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting up a replicated MySQL server</title>
		<link>http://randymelder.com/2008/06/27/setting-up-a-replicated-mysql-server/</link>
		<comments>http://randymelder.com/2008/06/27/setting-up-a-replicated-mysql-server/#comments</comments>
		<pubDate>Fri, 27 Jun 2008 20:43:53 +0000</pubDate>
		<dc:creator>Randy Melder</dc:creator>
				<category><![CDATA[Apache / PHP / MySQL]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[replication]]></category>

		<guid isPermaLink="false">http://www.randymelder.com/index.php/technology/php-mysql/setting-up-a-replicated-mysql-server/</guid>
		<description><![CDATA[I&#8217;m pretty much taking notes here, so I put the link at the bottom of this post to the original article that I based this off of. Here are the steps to get replication setup. 1. SSH to [PRIMARY HOST], log into mysql as root and SET GLOBAL max_connections = 0; GRANT REPLICATION SLAVE, REPLICATION [...]]]></description>
		<wfw:commentRss>http://randymelder.com/2008/06/27/setting-up-a-replicated-mysql-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
