using System;using System.Text;using System.Data.SqlClient;namespace App{class MyClass{public static void Main(string[] args){string str=Data Source=.;Initial Catalog=mlh;Integrated Security=True;us...
using System; using System.Text; using System.Data.SqlClient; namespace App{ class MyClass{ public static void Main(string[] args){ string str="Data Source=.;Initial Catalog=mlh;Integrated Security=True"; using ( SqlConnection con = new SqlConnection(str)) { con.Open(); string sql = "select * from student"; using(SqlCommand cmd = new SqlCommand(sql,con)){ Console.WriteLine(cmd.ExecuteNonQuery()); Console.WriteLine(cmd.CommandText); //Console.WriteLine(cmd.ExecuteReader()); SqlDataReader reader = cmd.ExecuteReader(); while(reader.Read()){ Console.WriteLine(reader["id"]);//读取id Console.WriteLine(reader["name"]);//读取name字段 } } } } } }
沃梦达教程
本文标题为:C# 数据库操作
基础教程推荐
猜你喜欢
- 如何优雅的利用Windows服务来部署ASP.NET Core程序 2023-09-28
- c# – Windows Phone 8通知和后台任务 2023-09-20
- C#算法之无重复字符的最长子串 2023-05-12
- c# for循环中创建线程执行问题 2023-05-06
- C#连接数据库的几种方法 2023-06-04
- C#面向对象编程中开闭原则的示例详解 2023-06-21
- C#中数组扩容的几种方式介绍 2023-07-04
- C#编写控制台程序纸牌游戏 2023-01-27
- C#中的Linq to JSON操作详解 2023-06-09
- C#对Xamarin框架进行数据绑定 2023-05-16