C#sql 데이터베이스에 간단하게 연결하는 방법

2691 단어
본고의 실례는 C#를 간단하게 sql 데이터베이스에 연결하는 방법을 설명하였다.여러분에게 참고하도록 공유하겠습니다. 구체적으로는 다음과 같습니다.

using System;
using System.Collections.Generic;
using System.Text;
// 
using System.Data;
using System.Data.SqlClient;
using worddic;
namespace testDB
{
  class Program
  {
    static void Main(string[] args)
    {
      //char[] array = new char[2] ;
      string [] a = new string[2];
      FileOp words = new FileOp();
      words.openfile("worddic.txt");
      words.getwords(ref a);
      /* Console.WriteLine(" Data Source:");
      string data_source = Console.ReadLine();
      Console.WriteLine(" Initial Catalog:");
      string initial_catalog = Console.ReadLine();
      Console.WriteLine(" user id:");
      string user_id = Console.ReadLine();
      Console.WriteLine(" pass word:");
      string pword = Console.ReadLine();
      // 
      string strConn ="Data Source="+data_source+";Initial Catalog="+initial_catalog+";User ID="+user_id+";Password="+pword+"";//YourPwd sa 
      */
      string strConn = "Data Source=HYPER-V-WIN2003\\SQLSRV2005;Initial Catalog=Mytest;User ID=sa;Password=sa";
      SqlConnection conn = null;
      SqlCommand sqlCmd = null;
      try
      {
        // connection 
        conn = new SqlConnection(strConn);
        // 
        conn.Open();
        // Transac Sql 
        sqlCmd = conn.CreateCommand();
        // 
        //sqlCmd.CommandText = "create table wordlist(wrongwords varchar(30),rightwords varchar(30),sign char(20),)";
        //sqlCmd.ExecuteScalar();
        while (a[0] != null) {
          sqlCmd.CommandText ="insert into wordlist(wrongwords,rightwords,sign) values('" + a[0] + "','" + a[1] + "',1 )";
          sqlCmd.ExecuteScalar();
          a[0] = null;
          a[1] = null;
          words.getwords(ref a);
        }
        words.fileclose();
        Console.WriteLine();
        // 
      }
      catch (SqlException e)
      {
        Console.WriteLine(e.Message);
      }
      finally
      {
        conn.Close();
      }
      Console.WriteLine(" , ");
      Console.ReadKey();
    }
  }
}


더 많은 C# 관련 내용에 관심이 있는 독자들은 본 사이트의 주제를 보실 수 있습니다.,,,,,,,,,,,,,,,,
본고에서 서술한 것이 여러분의 C# 프로그램 설계에 도움이 되었으면 합니다.

좋은 웹페이지 즐겨찾기