国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 學(xué)院 > 開(kāi)發(fā)設(shè)計(jì) > 正文

C#對(duì)于sql server數(shù)據(jù)庫(kù)的簡(jiǎn)單操作

2019-11-17 03:12:15
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

C#對(duì)于sql server數(shù)據(jù)庫(kù)的簡(jiǎn)單操作

1.在用windows模式登陸sql server 數(shù)據(jù)庫(kù) 簡(jiǎn)歷一個(gè)student的數(shù)據(jù)庫(kù),然后新建查詢:

create table student( id     int  auto_increment  PRimary key, name char(10) not null, sex    char(10) not null, age   char(10) not null,   )

2.在vs中新建一個(gè)項(xiàng)目,輸入一下代碼:

using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Data;using System.Data.SqlClient;namespace Consoleapplication1{    class Program    {        static void Main(string[] args)        {            string connSting;            connSting = "server=localhost;database=student;Integrated Security=True ";            SqlConnection sConn = new SqlConnection(connSting);            try            {                sConn.Open();            }            catch (Exception ex)            {                Console.WriteLine("鏈接錯(cuò)誤:" + ex.Message);            }            string sqlMessage=null;            sqlMessage = "select * from student";            SqlCommand sCmd = new SqlCommand(sqlMessage, sConn);            SqlDataReader sdr = null;            try            {                sdr = sCmd.ExecuteReader();                            Console.WriteLine(" 姓名   性別   年齡 ");                while (sdr.Read())                {                    Console.WriteLine(sdr["name"] +""+ sdr["sex"]+"" + sdr["age"]);                }                sConn.Close();            }            catch (Exception ex)            {                Console.WriteLine(ex.Message);            }            Console.ReadLine();        }    }}

3.運(yùn)行結(jié)果將會(huì)顯示數(shù)據(jù)庫(kù)中的數(shù)據(jù)


發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 泾阳县| 夹江县| 樟树市| 巴林右旗| 上林县| 安康市| 那坡县| 黎城县| 武安市| 新平| 延庆县| 金寨县| 剑河县| 象州县| 玉树县| 峨眉山市| 周口市| 齐齐哈尔市| 高陵县| 韩城市| 璧山县| 通州市| 义乌市| 平陆县| 鸡东县| 香格里拉县| 繁昌县| 永州市| 泉州市| 河池市| 比如县| 通河县| 玉树县| 岑巩县| 得荣县| 宜宾县| 无为县| 土默特右旗| 平泉县| 巴楚县| 全椒县|