如何使用清单框项目作为参数来获取数据库记录 [英] How to fetch database records with checkedlistbox items as parameters

查看:83
本文介绍了如何使用清单框项目作为参数来获取数据库记录的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好.我需要从数据库中获取在清单列表中已检查的项目的ID.请帮忙!

Hi yall. I need to fetch the ids of the items that have been checked in a checkedlistbox from the database. Please help!

dbparamcollection param =new dbparamcollection();   stringbuilder cmd =new stringbuilder(select id from table where item like @rice);    foreach(object item in checklistbox1.checkeditems)  { param.add(new dbparameter("@rice", item) );  } datatable sub=helper.executedatatable(cmd.tostring, param);

它不起作用任何想法.我使用的是dbparameter而不是sqlparam

its not working any ideas. Am using dbparameter not sqlparam

推荐答案

您自己覆盖了这些参数.仅使用最后一个.
尝试使用从表中(@params)中的项目中选择ID",并将参数构建为带引号的字符串列表(``p1'',``p2''....")
您可能仅限于IN子句中的元素数(256吗?)
You are overriding the parameters yourself. Only the last one will be used.
Try using "select id from table where item in (@params)" and build params as list of quoted strings (" ''p1'',''p2''.... ")
You might be limited to the number of elements in IN clause (256 ?)


这篇关于如何使用清单框项目作为参数来获取数据库记录的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆