码迷,mamicode.com
首页 > 数据库 > 详细

再探C#——控件调用/数据库操作/配置文件

时间:2018-03-17 19:47:48      阅读:283      评论:0      收藏:0      [点我收藏+]

标签:对象指针   str   strong   操作   const   rms   eve   利用   new   

因为这学期的设计模式课需要进行面向对象的编程, 所以这里抽时间复习一下C#


 

 

命名空间的设计目的是提供一种让一组名称与其他名称分隔开的方式。

 

利用对象指针调用控件:

public partial class Form1 : Form
{
    public Form1()
    {
        InitializeComponent();
    }

    private void button1_Click(object sender, EventArgs e)
    {
        MyClass.method1(textBox1);
    }
}

public class MyClass
{
    static public void method1(System.Windows.Forms.TextBox t1)
   {
        t1.Text = "6666666666666666";
    }
}

 

数据库:

using System.Data;
using System.Data.SqlClient;

 连接数据库:

string constr = "server=.;database=数据库名;integrated security=SSPI";
SqlConnection con = new SqlConnection();
con.ConnectionString = constr;
con.Open();

执行命令:

SqlCommand com = new SqlCommand();
com.Connection = con;
com.CommandType = CommandType.Text;
com.CommandText = "查询语句";
SqlDataReader dr = com.ExecuteReader();

 

再探C#——控件调用/数据库操作/配置文件

标签:对象指针   str   strong   操作   const   rms   eve   利用   new   

原文地址:https://www.cnblogs.com/lokvahkoor/p/8591853.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!