• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

使用清单框项目作为参数来获取数据库记录

用户头像
it1352
帮助1

问题说明

大家好.我需要从数据库中获取在清单列表中已检查的项目的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

正确答案

#1
您自己覆盖了这些参数.仅使用最后一个.
尝试使用从表中(@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 ?)

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /reply/detail/tanhcckkaj
系列文章
更多 icon
同类精品
更多 icon
继续加载