<html><head></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><br><div><div>On Jul 25, 2012, at 9:32 PM, George Parkinson wrote:</div><br class="Apple-interchange-newline"><blockquote type="cite"><div><div style="color: rgb(0, 0, 0); background-color: rgb(255, 255, 255); font-family: 'lucida console', sans-serif; font-size: 10pt; position: static; z-index: auto; "><div><div><div><font size="2" style="font-family: arial, helvetica, sans-serif;">hello all,</font></div><div><font size="2" style="font-family: arial, helvetica, sans-serif;">i'm not sure what to make of this...</font></div><div><font size="2" style="font-family: arial, helvetica, sans-serif;"><br></font></div><div><font size="2" style="font-family: arial, helvetica, sans-serif;">"SELECT * FROM t WHERE t.AgencyID in (996,998,1195)"</font></div><div><font size="2" style="font-family: arial, helvetica, sans-serif;">returns all records where AgencyID one of 996, 998, or 1195...no problem here.</font></div><div><font size="2" style="font-family: arial, helvetica, sans-serif;"><br></font></div><div><font size="2" style="font-family: arial, helvetica, sans-serif;">now, let's say i have an array->    SqlBind(1) =
 "996,998,1195"</font></div><div><font size="2" style="font-family: arial, helvetica, sans-serif;">and i use this format -> <span class="Apple-tab-span" style="white-space:pre">    </span>       "SELECT * FROM t WHERE t.agencyid IN (:1)"</font></div><div><font size="2" style="font-family: arial, helvetica, sans-serif;"><br></font></div><div><font size="2" style="font-family: arial, helvetica, sans-serif;">when i run:</font></div><div><font size="2" style="font-family: arial, helvetica, sans-serif;">db.SqlSelect(SQLQuery, kClientSide, kNoLocks, kForwardOnly, SQLBind)</font></div><div><font size="2" style="font-family: arial, helvetica, sans-serif;">only records where t.AgencyID = 996 are returned.</font></div><div><font size="2" style="font-family: arial, helvetica, sans-serif;"><br></font></div><div><font size="2" style="font-family: arial, helvetica, sans-serif;">is this normal?</font></div><div><font size="2" style="font-family:
 arial, helvetica, sans-serif;">can't binding be used with "IN"?</font></div><div><font size="2" style="font-family: arial, helvetica, sans-serif;"><br></font></div><div><font size="2" style="font-family: arial, helvetica, sans-serif;">thanks,</font></div><div><font size="2" style="font-family: arial, helvetica, sans-serif;">george</font></div><div><font size="2" style="font-family: arial, helvetica, sans-serif;"><br></font></div><div><br></div></div></div></div></div></blockquote></div><div><br></div><div>One more option to play with:</div><div><br></div><div><a href="http://www.valentina-db.com/dokuwiki5/doku.php?id=valentina:vcomponents:vsql:reference:expr:funcs_collections">http://www.valentina-db.com/dokuwiki5/doku.php?id=valentina:vcomponents:vsql:reference:expr:funcs_collections</a></div><div><br></div><div>something like</div><div><br></div><div>"select * from t where INCLUDE_ITEM( :1, agencyid)"</div><div><br></div><div>with</div><div><blockquote type="cite"><div><div style="color: rgb(0, 0, 0); background-color: rgb(255, 255, 255); font-family: 'lucida console', sans-serif; font-size: 10pt; position: static; z-index: auto; "><div><div><div><font size="2" style="font-family: arial, helvetica, sans-serif; ">SqlBind(1) = "996,998,1195"</font></div></div></div></div></div></blockquote></div><div><br></div><div>-- </div><div apple-content-edited="true"><div>Best regards,<br>Ivan Smahin<br>Senior Software Engineer<br>Paradigma Software, Inc<br>Valentina - The Ultra-Fast Database<br><a href="http://www.valentina-db.com/">http://www.valentina-db.com</a></div>
</div>
<br></body></html>