<div>Hi All</div>
<div>I have a table, where &#39;cid&#39; field is of type &quot;serial&quot;.</div>
<div> </div>
<div>Schema declaration is -&gt;  <em>&quot;&#39;cid&#39; =&gt; array(&#39;type&#39; =&gt; &#39;serial&#39;, &#39;unsigned&#39; =&gt; TRUE, &#39;not null&#39; =&gt; TRUE, ),&quot;</em></div>
<div> </div>
<div>Aim is to have an incremented value for it.</div>
<div>The code is as below</div>
<div> </div>
<div><em>$lastid = 0;<br>  for($delta = 0; $delta &lt; $all_companies; $delta++)<br>  {<br> $lastid = db_last_insert_id(rs_companies, cid) + 1;<br>      db_query(<br>    &#39;INSERT INTO {rs_companies} ( cid, uid, prevcompany, joindate, releasedate) &#39;<br>
      .&quot;VALUES (%d, &#39;%d&#39;, &#39;%s&#39;, &#39;%d&#39;, &#39;%d&#39;)&quot;, <br> $lastid,  </em></div>
<div> </div>
<div>With this, I find this &#39;cid&#39; field is not auto incrementing.  Any idea, whats the wrong here.</div>
<div> </div>
<div>Best Regards</div>
<div>Austin.</div>
<div> </div>
<div> </div>