db.cs

来自「人事管理系统」· CS 代码 · 共 53 行

CS
53
字号
using System;
using System.Collections.Generic;
using System.Text;
using System.Data.SqlClient;
using System.IO;
using System.Data;


namespace BlueHill_Win_
{
    class DB
    {
        public static SqlConnection connection()
        {
            SqlConnection con = new SqlConnection("Server=.;database=BlueHillManagement;Integrated Security =True; ");
            return con;
        }
        public static string aa;

        public static string getA
        {
            get { return aa; }
        }

        public static string setA
        {
            set { aa = value; }
        }
        public static string bb;

        public static string getB
        {
            get { return bb; }
        }

        public static string setB
        {
            set { bb = value; }
        }
        public static string bb1;

        public static string getBB
        {
            get { return bb1; }
        }

        public static string setBB
        {
            set { bb1 = value; }
        }
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?