<?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: MySQL, MS Access, ODBC, Lock Violations: For The Record</title>
	<atom:link href="http://www.harkyman.com/2008/08/01/mysql-ms-access-odbc-lock-violations-for-the-record/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.harkyman.com/2008/08/01/mysql-ms-access-odbc-lock-violations-for-the-record/</link>
	<description>FEEL THE LOVE</description>
	<lastBuildDate>Tue, 07 Feb 2012 20:42:02 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: BigK</title>
		<link>http://www.harkyman.com/2008/08/01/mysql-ms-access-odbc-lock-violations-for-the-record/comment-page-1/#comment-43350</link>
		<dc:creator>BigK</dc:creator>
		<pubDate>Thu, 22 Dec 2011 23:33:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.harkyman.com/2008/08/01/mysql-ms-access-odbc-lock-violations-for-the-record/#comment-43350</guid>
		<description>Thanks!!!!</description>
		<content:encoded><![CDATA[<p>Thanks!!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://www.harkyman.com/2008/08/01/mysql-ms-access-odbc-lock-violations-for-the-record/comment-page-1/#comment-40605</link>
		<dc:creator>David</dc:creator>
		<pubDate>Thu, 07 Jul 2011 20:57:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.harkyman.com/2008/08/01/mysql-ms-access-odbc-lock-violations-for-the-record/#comment-40605</guid>
		<description>It works as long as 1 field changes, so I am going to write a random number to a dummy field every time.</description>
		<content:encoded><![CDATA[<p>It works as long as 1 field changes, so I am going to write a random number to a dummy field every time.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dolfindans</title>
		<link>http://www.harkyman.com/2008/08/01/mysql-ms-access-odbc-lock-violations-for-the-record/comment-page-1/#comment-39116</link>
		<dc:creator>dolfindans</dc:creator>
		<pubDate>Fri, 18 Mar 2011 13:38:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.harkyman.com/2008/08/01/mysql-ms-access-odbc-lock-violations-for-the-record/#comment-39116</guid>
		<description>This seems to work for me, too.
Oddly, it doesn&#039;t happen with all tables.
But adding the check to only update when it&#039;s not already that value did the trick.</description>
		<content:encoded><![CDATA[<p>This seems to work for me, too.<br />
Oddly, it doesn&#8217;t happen with all tables.<br />
But adding the check to only update when it&#8217;s not already that value did the trick.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dg</title>
		<link>http://www.harkyman.com/2008/08/01/mysql-ms-access-odbc-lock-violations-for-the-record/comment-page-1/#comment-38944</link>
		<dc:creator>dg</dc:creator>
		<pubDate>Sun, 27 Feb 2011 15:46:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.harkyman.com/2008/08/01/mysql-ms-access-odbc-lock-violations-for-the-record/#comment-38944</guid>
		<description>Thanks for this!  I was having this exact problem and couldn&#039;t figure out how to fix it, but this did it.

Thanks again!</description>
		<content:encoded><![CDATA[<p>Thanks for this!  I was having this exact problem and couldn&#8217;t figure out how to fix it, but this did it.</p>
<p>Thanks again!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SW</title>
		<link>http://www.harkyman.com/2008/08/01/mysql-ms-access-odbc-lock-violations-for-the-record/comment-page-1/#comment-6841</link>
		<dc:creator>SW</dc:creator>
		<pubDate>Fri, 05 Sep 2008 14:41:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.harkyman.com/2008/08/01/mysql-ms-access-odbc-lock-violations-for-the-record/#comment-6841</guid>
		<description>If running a script the query in vba code with a docmd.openquery or docmd.runsql, all messages can be suppressed wrapping them with a docmd.setwarnings false and docmd.setwarnings true in a script.  Note however this will suppress all messages and between the false and true statements.  So if something else breaks, you won&#039;t know.

Example: this query named &quot;qryTest&quot; that updates a mysql table with records already in it will continue without the message:


Function UpdateSports()
DoCmd.SetWarnings False
DoCmd.OpenQuery &quot;qryTest&quot;, acViewNormal
DoCmd.SetWarnings True
End Function</description>
		<content:encoded><![CDATA[<p>If running a script the query in vba code with a docmd.openquery or docmd.runsql, all messages can be suppressed wrapping them with a docmd.setwarnings false and docmd.setwarnings true in a script.  Note however this will suppress all messages and between the false and true statements.  So if something else breaks, you won&#8217;t know.</p>
<p>Example: this query named &#8220;qryTest&#8221; that updates a mysql table with records already in it will continue without the message:</p>
<p>Function UpdateSports()<br />
DoCmd.SetWarnings False<br />
DoCmd.OpenQuery &#8220;qryTest&#8221;, acViewNormal<br />
DoCmd.SetWarnings True<br />
End Function</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tx_Rx</title>
		<link>http://www.harkyman.com/2008/08/01/mysql-ms-access-odbc-lock-violations-for-the-record/comment-page-1/#comment-5870</link>
		<dc:creator>Tx_Rx</dc:creator>
		<pubDate>Tue, 05 Aug 2008 09:36:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.harkyman.com/2008/08/01/mysql-ms-access-odbc-lock-violations-for-the-record/#comment-5870</guid>
		<description>Ah I understand. Webmin is cool, I&#039;ve always been terrified to dabble overly with ODBC and MySQL! :)</description>
		<content:encoded><![CDATA[<p>Ah I understand. Webmin is cool, I&#8217;ve always been terrified to dabble overly with ODBC and MySQL! <img src='http://www.harkyman.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://www.harkyman.com/2008/08/01/mysql-ms-access-odbc-lock-violations-for-the-record/comment-page-1/#comment-5797</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Fri, 01 Aug 2008 18:53:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.harkyman.com/2008/08/01/mysql-ms-access-odbc-lock-violations-for-the-record/#comment-5797</guid>
		<description>Actually, I&#039;m not admin&#039;ing from Access. I use either the MySQL Administrator app on Mac, or just use Webmin usually. The Access part is a front end for the users, and it&#039;s... craptastic! Actually, there are a number of gotchas I&#039;ve discovered while having Access interface with MySQL via ODBC.

Thanks for the suggestion, though!</description>
		<content:encoded><![CDATA[<p>Actually, I&#8217;m not admin&#8217;ing from Access. I use either the MySQL Administrator app on Mac, or just use Webmin usually. The Access part is a front end for the users, and it&#8217;s&#8230; craptastic! Actually, there are a number of gotchas I&#8217;ve discovered while having Access interface with MySQL via ODBC.</p>
<p>Thanks for the suggestion, though!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tx_Rx</title>
		<link>http://www.harkyman.com/2008/08/01/mysql-ms-access-odbc-lock-violations-for-the-record/comment-page-1/#comment-5793</link>
		<dc:creator>Tx_Rx</dc:creator>
		<pubDate>Fri, 01 Aug 2008 14:40:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.harkyman.com/2008/08/01/mysql-ms-access-odbc-lock-violations-for-the-record/#comment-5793</guid>
		<description>Ouch, I&#039;m glad I don&#039;t have to use MS Access to admin a MySQL db. There are some open-source apps which work well like Navicat MySQL or there&#039;s this 
http://webyog.com/en/downloads.php

SQLyog which has a community version you could try.</description>
		<content:encoded><![CDATA[<p>Ouch, I&#8217;m glad I don&#8217;t have to use MS Access to admin a MySQL db. There are some open-source apps which work well like Navicat MySQL or there&#8217;s this<br />
<a href="http://webyog.com/en/downloads.php" rel="nofollow">http://webyog.com/en/downloads.php</a></p>
<p>SQLyog which has a community version you could try.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.606 seconds -->

