Net Core教程

C#数据库连接方式【简版】

本文主要是介绍C#数据库连接方式【简版】,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace DataInfo
{
public partial class UserControl1: UserControl
{
private OverSystems.DataAccess.SQLAccess sqlaccessy = new OverSystems.DataAccess.SQLAccess(@"Data Source =DATA;
Initial Catalog=databasesname; User ID=username; Password =pw");

public UserControl1()
{
FillDG();
}

public void FillDG(string str)
{
string CommandText = " sql ...";
sqlaccessy.ExecuteNonQuery(CommandText);
}


}
}

这篇关于C#数据库连接方式【简版】的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!