<?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/"
	xmlns:series="http://unfoldingneurons.com/"
	>

<channel>
	<title>marcus welz &#187; Database</title>
	<atom:link href="http://metaversedeveloper.com/tag/database/feed/" rel="self" type="application/rss+xml" />
	<link>http://metaversedeveloper.com</link>
	<description>working hard at avoiding to write code</description>
	<lastBuildDate>Thu, 04 Mar 2010 17:22:04 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Dirty Rows and Audit Trails with Zend_Db_Table</title>
		<link>http://metaversedeveloper.com/2008/09/27/dirty-rows-and-audit-trails-with-zend_db_table/</link>
		<comments>http://metaversedeveloper.com/2008/09/27/dirty-rows-and-audit-trails-with-zend_db_table/#comments</comments>
		<pubDate>Sat, 27 Sep 2008 15:39:27 +0000</pubDate>
		<dc:creator>marcus</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Zend Framework]]></category>
		<category><![CDATA[audit]]></category>
		<category><![CDATA[columns]]></category>
		<category><![CDATA[db]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[rows]]></category>
		<category><![CDATA[tables]]></category>
		<category><![CDATA[trail]]></category>
		<category><![CDATA[zend]]></category>

		<guid isPermaLink="false">http://marcuswelz.com/?p=222</guid>
		<description><![CDATA[There are various ways to update rows in a database table using the Zend_Db_Table components. You can use use Zend_Db_Table::update(), like so:

$table = My_Table();
$table-&#62;update(array('age' => 22), 'id = 1');

or retrieve the row, and update it:

$table = My_Table();
$row = $table-&#62;find(1)-&#62;current();
$row-&#62;age = 22;
$row-&#62;save();

The big difference between the two approaches is that by first retrieving the row, and [...]]]></description>
		<wfw:commentRss>http://metaversedeveloper.com/2008/09/27/dirty-rows-and-audit-trails-with-zend_db_table/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Indexes in PostgreSQL</title>
		<link>http://metaversedeveloper.com/2005/11/02/indexes-in-postgresql/</link>
		<comments>http://metaversedeveloper.com/2005/11/02/indexes-in-postgresql/#comments</comments>
		<pubDate>Wed, 02 Nov 2005 17:24:10 +0000</pubDate>
		<dc:creator>marcus</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[index]]></category>
		<category><![CDATA[postgresql]]></category>
		<category><![CDATA[sql]]></category>

		<guid isPermaLink="false">http://metaversedeveloper.com/?p=28</guid>
		<description><![CDATA[One thing that most people don't have to worry about in MySQL is case-sensitivity. Unless you're trying to authenticate a user against a database password and don't use MD5 (like you should!), in which case the password is not case sensitive by default.
In PostgreSQL everything is case sensitive. That means that if you have a [...]]]></description>
		<wfw:commentRss>http://metaversedeveloper.com/2005/11/02/indexes-in-postgresql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Modified DBDesigner</title>
		<link>http://metaversedeveloper.com/2004/07/22/modified-dbdesigner/</link>
		<comments>http://metaversedeveloper.com/2004/07/22/modified-dbdesigner/#comments</comments>
		<pubDate>Fri, 23 Jul 2004 00:59:11 +0000</pubDate>
		<dc:creator>marcus</dc:creator>
				<category><![CDATA[Software & Tools]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://metaversedeveloper.com/?p=11</guid>
		<description><![CDATA[Earlier today I modified DBDesigner to, above all, not delete columns automatically after renaming the destination column in a relationship. It also displays "AI" for auto_increment columns, so I don't have to guess anymore whether I forgot to check that AI column without opening up the edit box for every single table, as there are [...]]]></description>
		<wfw:commentRss>http://metaversedeveloper.com/2004/07/22/modified-dbdesigner/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
