Hi,<br><br>I am using support module for my current projects. This module often runs UPDATE SQL statement and checks db_affected_rows() before issuing INSERT statements like <br><br>        db_query(&quot;UPDATE {support_ticket} SET message_id = &#39;%s&#39;, state = %d, priority = %d, client = %d, assigned = %d WHERE nid = %d&quot;, isset($node-&gt;message_id) ? $node-&gt;message_id : &#39;&#39;, $node-&gt;state, $node-&gt;priority, $node-&gt;client, $node-&gt;assigned, $node-&gt;nid);<br>


        if (!db_affected_rows()) {<br>          db_query(&quot;INSERT INTO {support_ticket} (nid, message_id, state, priority, client, assigned) VALUES(%d, &#39;%s&#39;, %d, %d, %d, %d)&quot;, $node-&gt;nid, isset($node-&gt;message_id) ? $node-&gt;message_id : &#39;&#39;, $node-&gt;state, $node-&gt;priority, $node-&gt;client, $node-&gt;assigned);<br>


        }<br><br>I assume this is with an intention of avoiding duplicate records inserts. However in my case db_affected_rows() mostly returns 0 though a matching row is found in the table. <br><br>I guess it is because the values being updated is same as values already available in the row. As a result drupal throws user warning like.<br>

 <br><div>
user warning: Duplicate entry &#39;292&#39; for key &#39;PRIMARY&#39;
query: INSERT INTO support_ticket (nid, message_id, state, priority, 
client, assigned) VALUES(292, &#39;&#39;, 1, 2, 7, 11) in /sites/all/modules/support/support.module on
 line 650.</div><br>I am planning to rewrite all the UPDATE query with SELECT COUNT(*) to fix this. Is there any other workaround available for this ?<br><br>I am using Drupal 6.19, PHP 5.3 and MySQL Server version: 5.1.41-3ubuntu12.6 (Ubuntu).<br>


<br>Thanks in advance. <br><br clear="all"><br>-- <br>Sivaji<br>+91 9941 571 690<br><br><br>