想要列出表中的所有现有列作为一个存储过程的输出?

时间:2013-09-02 09:51:28

标签: asp.net oracle

我有一个UI,用户将根据它选择一个表名,下一个下拉列表将会更新。 我想通过某种方式管理第二个下拉列表并列出该选择表中的所有列。(我知道这可能是风险,可能比我想的更简单。)

1 个答案:

答案 0 :(得分:1)

比如说:

    protected void DropDown2_SelectedIndexChanged(object sender, EventArgs e)
    {
    // do all connection things.
    query="select COLUMN_NAME from ALL_TAB_COLUMNS where
           TABLE_NAME="+DropDown1.SelectedValue.ToString();

    }

在第二个下拉列表中写入此内容,并在dropdown1

中选择表名