• 大小: 0.10M
    文件类型: .7z
    金币: 1
    下载: 0 次
    发布日期: 2020-12-14
  • 语言: C#
  • 标签: 数据库  C#  操作  sql  

资源简介

本实例是通过C#访问SQLServer数据库,对于新手学习C#和数据库是一个不错的学习机会。

资源截图

代码片段和文件信息

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

using System.Data.SqlClient;

namespace SQL_Server_queries___procs___funcs_in_CSharp
{
    public partial class Form1 : Form
    {
        SqlConnection conn;

        public Form1()
        {
            InitializeComponent();
        }

        private void btnConnect_Click(object sender EventArgs e)
        {
            conn = new SqlConnection(“Database=“ + txtDB.Text + “;Server=“ + txtServer.Text + “;Trusted_Connection=Yes;“);
            conn.Open();
        }

        private void btnInsert_Click(object sender EventArgs e)
        {
            using (SqlCommand cmd = 

评论

共有 条评论