net中使用sql的sql过程

net中使用sql的sql过程

本文介绍了如何创造&在C#.net中使用sql的sql过程的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! PLs帮助.. 如何在C#.net上创建和使用sql的sql程序按钮点击PLs help..how to create & use the sql procedure of sql in C#.net on Button click推荐答案using (SqlConnection con = new SqlConnection(strConnect)) { con.Open(); using (SqlCommand com = new SqlCommand("SELECT iD, description FROM myTable", con)) { using (SqlDataReader reader = com.ExecuteReader()) { while (reader.Read()) { int id = (int) reader["iD"]; string desc = (string) reader["description"]; Console.WriteLine("ID: {0}\n {1}", iD, desc); } } } } 这篇关于如何创造&在C#.net中使用sql的sql过程的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
08-06 22:04