<?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>Tech Thought &#187; database</title>
	<atom:link href="http://blog.evandavey.com/category/database/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.evandavey.com</link>
	<description>Tech tips, hints, and general musings. PHP, Perl, Mysql, Javascript, AJAX, JSON, Linux, Mac OSX</description>
	<lastBuildDate>Thu, 08 Jul 2010 06:42:50 +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>How-To: Fix Problems with Google Maps and Internet Explorer: Grey Background, Clipping, Off centre etc</title>
		<link>http://blog.evandavey.com/2008/08/how-to-fix-problems-with-google-mapsinternet-explorer-grey-background-etc.html</link>
		<comments>http://blog.evandavey.com/2008/08/how-to-fix-problems-with-google-mapsinternet-explorer-grey-background-etc.html#comments</comments>
		<pubDate>Thu, 14 Aug 2008 06:34:11 +0000</pubDate>
		<dc:creator>Ev</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[google maps]]></category>
		<category><![CDATA[internet explorer]]></category>

		<guid isPermaLink="false">http://blog.evandavey.com/?p=219</guid>
		<description><![CDATA[We&#8217;ve just developed a Google Maps application &#8211; all using Firefox &#8211; and started to test it in IE.  We were shocked to find that our map looks completely off centre and have a big grey backround across them.  Moving the map with the mouse causes them to clip and look shocking! See below: So [...]]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve just developed a Google Maps application &#8211; all using Firefox &#8211; and started to test it in IE.  We were shocked to find that our map looks completely off centre and have a big grey backround across them.  Moving the map with the mouse causes them to clip and look shocking!</p>
<p>See below:</p>
<p style="text-align: center;"><a href="http://blog.evandavey.com/wp-content/uploads/2008/08/picture-2.png"><img class="size-full wp-image-220 aligncenter" title="Google Maps Problem in Internet Explorer" src="http://blog.evandavey.com/wp-content/uploads/2008/08/picture-2.png" alt="" width="500" height="288" /></a></p>
<p style="text-align: left;">So how do we fix this?  It turned out that IE doesn&#8217;t like you writing script inside a <strong>&lt;table&gt;</strong> tag &#8211; which we were doing.  So we simply changed this code to run on the<strong> onLoad() </strong>event of the page, and it was all fixed!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.evandavey.com/2008/08/how-to-fix-problems-with-google-mapsinternet-explorer-grey-background-etc.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How-To: Add days to a date with Mysql</title>
		<link>http://blog.evandavey.com/2008/08/how-to-add-days-to-a-date-with-mysql.html</link>
		<comments>http://blog.evandavey.com/2008/08/how-to-add-days-to-a-date-with-mysql.html#comments</comments>
		<pubDate>Tue, 12 Aug 2008 00:20:41 +0000</pubDate>
		<dc:creator>Ev</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[date]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://blog.evandavey.com/?p=215</guid>
		<description><![CDATA[A common thing you need to do in mysql is add an interval of time to a date in a query.  Here is a simple example of how to do this: SELECT Risk.* FROM Risk WHERE (Risk.Next_Reminder_Due IS NULL OR Risk.Next_Reminder_Due &#60; DATE_ADD(NOW(), INTERVAL 7 DAY)) This returns all &#8216;risks&#8217; that either have a Next [...]]]></description>
			<content:encoded><![CDATA[<p>A common thing you need to do in mysql is add an interval of time to a date in a query.  Here is a simple example of how to do this:</p>
<pre>SELECT Risk.*
FROM Risk
WHERE (Risk.Next_Reminder_Due IS NULL OR
       Risk.Next_Reminder_Due &lt; DATE_ADD(NOW(), INTERVAL 7 DAY))</pre>
<p>This returns all &#8216;risks&#8217; that either have a Next Reminder Due of NULL or within the next week.</p>
<p>Read more about Mysql&#8217;s date functions on the Mysql Date &amp; Time Functions <a href="http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html" target="_blank">Manual Page</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.evandavey.com/2008/08/how-to-add-days-to-a-date-with-mysql.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
