在来问一次上次的不是很懂,我添加一条数据,怎么取的添加那条数据的ID
        string sql = "insert into Shop(ShopID,shopName,shoptype,area,areaaddress,Phone,datetime,ministrant,shopintro,Url,popshop)values('" + jiehe + "','"
    + TextBox1.Text + "','" + DropDownList1.Text + "','" + DropDownList2.Text + "','" + TextBox2.Text + "','"
    + TextBox3.Text + "','" + TextBox4.Text + "','" + TextBox5.Text + "','" + TextBox6.Text + "','"
    + fileName1 + extName + "','" + RadioButtonList1.SelectedValue + "') select @@identity as PKID";这样取出来的是string值,还是的不到我想要的select @@identity as PKID的ID值
请问下,要怎么弄才能取到select @@identity as PKID的ID值。