1. 首页
  2. 编程语言
  3. C#
  4. 通过查询数据库里的方法名称来调用方法

通过查询数据库里的方法名称来调用方法

上传者: 2019-01-11 10:46:20上传 TXT文件 2.53KB 热度 45次
利用影射,通过查询数据库里的方法名称,来调用方法 SqlConnection conn = new SqlConnection("server=.;uid =sa;pwd=;database=;"); string str = "select * from [KeyWord] where id='1'"; conn.Open(); SqlCommand cmd = new SqlCommand(str, conn); SqlDataReader dr = cmd.ExecuteReader(); // string
用户评论