62,269
社区成员
发帖
与我相关
我的任务
分享 Open();
string sl = "select * from uk where Ucid=@um";
SqlCommand comm = new SqlCommand(sl, conn);
comm.Parameters.AddWithValue("@um", um);
da.SelectCommand = comm;
da.Fill(ds);
Close();
return ds.Tables[0];