<?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: Using MySQL Triggers to Audit Field Changes from a Database Table</title>
	<atom:link href="http://www.phpugph.com/blog/2008/03/21/using-mysql-triggers-to-audit-field-changes-from-a-database-table/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.phpugph.com/blog/2008/03/21/using-mysql-triggers-to-audit-field-changes-from-a-database-table/</link>
	<description></description>
	<lastBuildDate>Wed, 23 Dec 2009 04:46:17 +0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: rcgauer</title>
		<link>http://www.phpugph.com/blog/2008/03/21/using-mysql-triggers-to-audit-field-changes-from-a-database-table/comment-page-1/#comment-416</link>
		<dc:creator>rcgauer</dc:creator>
		<pubDate>Mon, 26 Jan 2009 22:19:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpugph.com/blog/2008/03/21/using-mysql-triggers-to-audit-field-changes-from-a-database-table/#comment-416</guid>
		<description>Great content and very useful. Thank you!</description>
		<content:encoded><![CDATA[<p>Great content and very useful. Thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: php code and scripts &#187; Blog Archive &#187; Using MySQL Triggers to Audit Field Changes from a Database Table</title>
		<link>http://www.phpugph.com/blog/2008/03/21/using-mysql-triggers-to-audit-field-changes-from-a-database-table/comment-page-1/#comment-129</link>
		<dc:creator>php code and scripts &#187; Blog Archive &#187; Using MySQL Triggers to Audit Field Changes from a Database Table</dc:creator>
		<pubDate>Thu, 20 Mar 2008 20:53:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpugph.com/blog/2008/03/21/using-mysql-triggers-to-audit-field-changes-from-a-database-table/#comment-129</guid>
		<description>[...] M wrote an interesting post today onHere&#8217;s a quick excerptCode: DELIMITER &#124; CREATE TRIGGER audit_content BEFORE UPDATE ON content FOR EACH ROW BEGIN INSERT INTO content_audit SET content_id = OLD.id; UPDATE content_audit SET before_value = OLD.content WHERE id = last_insert_id(); &#8230; [...]</description>
		<content:encoded><![CDATA[<p>[...] M wrote an interesting post today onHere&#8217;s a quick excerptCode: DELIMITER | CREATE TRIGGER audit_content BEFORE UPDATE ON content FOR EACH ROW BEGIN INSERT INTO content_audit SET content_id = OLD.id; UPDATE content_audit SET before_value = OLD.content WHERE id = last_insert_id(); &#8230; [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
