摘要:
1 SqlConnection conn = new SqlConnection("Data Source=SHILONGWEI;Initial Catalog=Test;Integrated Security=True"); 2 SqlCommand cmd = new SqlCommand("proc_getpubstable", conn); //存储过程的名字 3 cmd.CommandType = CommandType.StoredProcedure; //指定存储过程 4 //... 阅读全文