• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    SQLServer 在Visual Studio的2种连接方法
    一、Sql Server 在Visual Studio的连接有两种方法:
    (1)本地计算机连接;
    复制代码 代码如下:

    string s = "Data Source=计算机名称;initial Catalog=数据库名称;integrated Security=True"; 

    (2)windows身份验证方式连接;
    复制代码 代码如下:

    string cc="Data Source = 计算机名称; Initial Catalog = 数据库名称; User ID = sa; Password = 你的密码"; 

    二、在Visual Studio中使用:
    例1:查询数据库中的数据并且显示出来
    复制代码 代码如下:

    string s = "Data Source=计算机名称;Initial Catalog=数据库名称;Integrated Security=True";  //此处使用本地计算机连接方式 
    SqlConnection conn = new SqlConnection(s);   //创建连接 
    conn.Open();    //打开连接 
    SqlCommand cmd = conn.CreateCommand(); 
    cmd.CommandText = "select * from T_User";   //使用命令 
    SqlDataAdapter adapter=new SqlDataAdapter(cmd); 
    DataTable dt=new DataTable(); 
    adapter.Fill(dt); 
    conn.Dispose();  //释放所以资源 
    cmd.Dispose(); 
    conn.Close();  //关闭连接 
    string realname=""; 
    string username=""; 
    string mobile=""; 
    string address=""; 
    for (int i=0;idt.Rows.Count;i++) 

        realname=dt.Rows[i][3].ToString(); 
        username=dt.Rows[i][1].ToString(); 
        mobile=dt.Rows[i][4].ToString(); 
        address=dt.Rows[i][5].ToString(); 
        Console.WriteLine("姓名为{0},用户名为{1},手机为{2},地址为{3}", realname, username, mobile, address); 

    Console.ReadKey(); 

    例2:删除表中数据
    复制代码 代码如下:

    string cc="Data Source = 计算机名称; Initial Catalog = 数据库名称; User ID = sa; Password = 你的密码";   //使用windows身份验证 
    SqlConnection conn = new SqlConnection(s); 
    conn.Open(); 
    SqlCommand cmd = conn.CreateCommand(); 
    cmd.CommandText = "delete from T_User where Id=5"; 
    cmd.ExecuteNonQuery(); 
    cmd.Dispose(); 
    conn.Close(); 
    Console.WriteLine("删除成功"); 
    Console.ReadKey(); 

    例3:修改表中数据
    复制代码 代码如下:

    string s = "Data Source=计算机名称;initial Catalog=数据库名称;integrated Security=True"; 
    SqlConnection conn = new SqlConnection(s); 
    conn.Open(); 
    SqlCommand cmd = conn.CreateCommand(); 
    cmd.CommandText = "update T_User set Card=@card where ID=3"; 
    cmd.Parameters.AddWithValue("@card", "13000000000000"); 
    cmd.ExecuteNonQuery(); 
    cmd.Dispose(); 
    conn.Close(); 
    conn.Dispose(); 
    Console.WriteLine("修改成功!"); 
    Console.ReadKey(); 

    例4:向表中插入数据
    复制代码 代码如下:

    string s = "data source=计算机名称;initial catalog=数据库名称;integrated security=true"; 
    SqlConnection conn = new SqlConnection(s); 
    conn.Open(); 
    SqlCommand cmd = conn.CreateCommand(); 
    cmd.CommandText = "insert into T_User(UserName,Password,RealName,Mobile,Address) values(@username,@password,@realname,@mobile,@address)"; 
    cmd.Parameters.AddWithValue("@username", "xingxing"); 
    cmd.Parameters.AddWithValue("@password", "77777"); 
    cmd.Parameters.AddWithValue("@realname", "星星"); 
    cmd.Parameters.AddWithValue("@mobile", 1300000000); 
    cmd.Parameters.AddWithValue("@address", "河北省北京市"); 
    cmd.ExecuteNonQuery(); 
    cmd.Dispose(); 
    conn.Close(); 
    conn.Dispose(); 
    Console.WriteLine("成功插入一行"); 
    Console.ReadKey();
    您可能感兴趣的文章:
    • Visual Studio 2008中文版官方下载地址
    • Visual Studio 2008 安装失败(“Web 创作组件”无法安装)的解决办法
    • Visual Studio中的jQuery智能提示设置方法
    • 微软 Visual Studio 2010官方下载地址给大家
    • 使用VisualStudio开发php的图文设置方法
    • 在Visual Studio中用C++语言创建DLL动态链接库图文教程
    • visual studio 2012安装配置方法图文教程 附opencv配置教程
    • VS2015开发环境的安装和配置
    上一篇:GridView使用CommandField删除列实现删除时提示确认框
    下一篇:asp.net Textbox服务器控件
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    SQLServer 在Visual Studio的2种连接方法 SQLServer,在,Visual,Studio,的,