• winForm连接数据库(sqlserver2005)


    帮同学搞个课程设计winform连接sqlserver2005

    具体方法:

    .添加App.config文件

    2.在App.config文件中添加节点

    <?xml version="1.0" encoding="utf-8" ?>
    <configuration>
    <appSettings>
        <add key="connString" value="Data Source=LIBL;Initial Catalog=MyTest;User ID=sa;Password=sa"></add>
    </appSettings>
    </configuration>

    3.在项目Reference中添加引用 System.configuration

    在文件中 添加引用 using System.configuration;

                                    using System.Data.SqlClient;

    4.获取App.config中的连接字符串

        public string ConnString = System.Configuration.ConfigurationManager.AppSettings["connString"];

    5.连接数据库,读取数据

    SqlConnection conn = new SqlConnection(ConnString);
                string strSql = "SELECT * FROM Basetb";
                SqlCommand cmd = new SqlCommand();
                cmd.CommandText = strSql;
                cmd.Connection = conn;
                conn.Open();
                SqlDataReader dr = cmd.ExecuteReader();
                if (dr.HasRows)
                {
                    while (dr.Read())
                    {
                        this.textBox1.Text = dr[0].ToString();
                    }
                }
                conn.Close();

    文章来自:http://hi.baidu.com/lili_weiwei/blog/item/8f86c6a9895586bdca130c1b.html

  • 相关阅读:
    cordova封装h5为app,cookie不可用解决方法
    Cordova环境搭建
    HelloWorld
    《机器学习实战》-朴素贝叶斯
    《机器学习实战》-决策树
    《机器学习实战》-k近邻算法
    《机器学习实战》-机器学习基础
    单输出感知机及其梯度
    损失函数及其梯度
    激活函数及其梯度
  • 原文地址:https://www.cnblogs.com/hpuCode/p/2294986.html
Copyright © 2020-2023  润新知