<?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>Jordon Mears &#187; MySQL</title>
	<atom:link href="http://www.finefrog.com/category/software/mysql/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.finefrog.com</link>
	<description>while(true) { write(learn(live())); }</description>
	<lastBuildDate>Thu, 22 Jul 2010 14:31:24 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Using mysqldump to Backup Database Structure and Data Separately</title>
		<link>http://www.finefrog.com/2009/02/02/using-mysqldump-to-backup-database-structure-and-data-separately/</link>
		<comments>http://www.finefrog.com/2009/02/02/using-mysqldump-to-backup-database-structure-and-data-separately/#comments</comments>
		<pubDate>Tue, 03 Feb 2009 00:18:38 +0000</pubDate>
		<dc:creator>jordoncm</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://www.finefrog.com/?p=298</guid>
		<description><![CDATA[I have have been developing on a MySQL database where a small amount of test data is still over a half a million rows or more. So exporting the schema to pass it along to others takes forever. Fortunately you can export just the structure of the database and nothing else (which is much faster).

mysqldump [...]]]></description>
		<wfw:commentRss>http://www.finefrog.com/2009/02/02/using-mysqldump-to-backup-database-structure-and-data-separately/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Convert a MySQL Date String into Javascript Date Object</title>
		<link>http://www.finefrog.com/2009/01/31/convert-a-mysql-date-string-into-javascript-date-object/</link>
		<comments>http://www.finefrog.com/2009/01/31/convert-a-mysql-date-string-into-javascript-date-object/#comments</comments>
		<pubDate>Sat, 31 Jan 2009 23:52:52 +0000</pubDate>
		<dc:creator>jordoncm</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://www.finefrog.com/?p=317</guid>
		<description><![CDATA[Here is a Javascript function that I threw together the other day that will take the default format of a MySQL DATETIME or TIMESTAMP field (YYYY-MM-DD HH:MM:SS) and convert it into a Date object in Javascript.

function parse_date(string) {
    var date = new Date();
    var parts = String(string).split(/[- :]/);

  [...]]]></description>
		<wfw:commentRss>http://www.finefrog.com/2009/01/31/convert-a-mysql-date-string-into-javascript-date-object/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Database Schema Searching Utility</title>
		<link>http://www.finefrog.com/2008/06/06/database-schema-searching-utility/</link>
		<comments>http://www.finefrog.com/2008/06/06/database-schema-searching-utility/#comments</comments>
		<pubDate>Fri, 06 Jun 2008 21:56:13 +0000</pubDate>
		<dc:creator>jordoncm</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.finefrog.com/?p=138</guid>
		<description><![CDATA[This is a php script that I wrote a number of years ago. It allows you to search through schema of MySQL databases by table column name. It can connect to multiple servers and it will search the structure of every table in every database.
It is a great tool to find related columns in a [...]]]></description>
		<wfw:commentRss>http://www.finefrog.com/2008/06/06/database-schema-searching-utility/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
