[C#] DB 연동
C#에서 DB를 연동하는 가장 간단한 소스이다.. 불필요한것도 있지만..귀찮아서 수정은 안하겠다...ㅎㅎ
using System;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Data;
using System.Data.SqlClient;
namespace ConnectDB
{
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}
private void button1_Click(object sender, RoutedEventArgs e)
{
string ConnStr = @"User Id=EX; Password=****; Server=***.**.***.*; Initial Catalog=FStreamDB";
SqlConnection conn = new SqlConnection(ConnStr);
SqlCommand command = new SqlCommand();
command.CommandText = "select musicData from musicTb1";
command.Connection = conn;
try
{
conn.Open();
}
catch (Exception ex)
{
MessageBox.Show(ex.Message.ToString());
}
finally
{
try
{
if (conn != null)
{
conn.Close();
}
}
catch (Exception) { }
}
}
}
}
'프로그래밍 > Language C#' 카테고리의 다른 글
[C#] Serial Port, DiscardInBuffer (0) | 2013.07.18 |
---|---|
[C#] Console.Write & WriteLine 차이점 (0) | 2013.05.31 |
[C#] Thread 실습 (0) | 2011.11.17 |
[C#] Thread 생성 (0) | 2011.11.16 |
[C#] 전화번호부 2탄 (List,IEnumberable 적용,클래스 상속) (0) | 2011.11.14 |
댓글
이 글 공유하기
다른 글
-
[C#] Serial Port, DiscardInBuffer
[C#] Serial Port, DiscardInBuffer
2013.07.18 -
[C#] Console.Write & WriteLine 차이점
[C#] Console.Write & WriteLine 차이점
2013.05.31 -
[C#] Thread 실습
[C#] Thread 실습
2011.11.17 -
[C#] Thread 생성
[C#] Thread 생성
2011.11.16