我的 listbox1 中有一些项目,并且想使用每个项目来运行查询,一旦运行查询,我想删除列表框中的那个项目并使用下一个项目来运行查询。例如,如果使用 item1 而不是删除 item1 并使用列表框中的下一个项目来运行查询。对所有项目执行此操作,直到列表框 1 内没有项目为止。
foreach (string myItems in listBox1.Items)
{
using (OracleCommand crtCommand = new OracleCommand(select REGEXP_REPLACE(dbms_metadata.get_ddl('" + myItems + "'), conn1))
{
string expectedresult = "y";
string dataresult = crtCommand.ExecuteScalar().ToString();
if (expectedresult == dataresult)
{
//do something and remove the item that has been used to run the query.
}
else
{
}
}
}