일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- 실버라이트 코리아
- 안드로이드
- 서진호
- 주신영
- winmodev
- 거제도
- 윈모데브
- 마이크로소프트
- windows mobile 6.5
- 훈스닷넷
- 소년포비
- 윈도우모바일
- 황광진
- 윈도우폰
- 윈도데브
- 지승욱
- 김춘배
- 윈도우폰7
- 옴니아2
- 쉐어포인트코리아
- 루나네스
- UX베이커리
- 스마트폰
- 신동혁
- MIX10
- 소년포비소프트
- 윈도우 모바일
- 헤이맨
- 데브피아
- 신석현
- Today
- Total
소년포비의 세계정복!!
C# 오라클 DB 연결 예제 본문
using System;
using System.Data;
using System.Data.OleDb;
class TableAnalysis
{
static void Main(string[] args)
{
string sql = "Provider=MSDAORA.1;Password=tiger;User ID=scott;Data Source=noaa;Persist Security Info=True"; //oracle 서버 연결
OleDbConnection conn = new OleDbConnection(sql);
//conn.ConnectionString = sql;
try
{
conn.Open(); //데이터베이스 연결
OleDbCommand cmd = new OleDbCommand();
cmd.CommandText = "select * from member"; //member 테이블
cmd.CommandType = CommandType.Text; //검색명령을 쿼리 형태로
cmd.Connection = conn;
OleDbDataReader read = cmd.ExecuteReader(); //select * from member 결과
Console.WriteLine("***** 테이블 분석 결과 *****");
for (int i = 0; i < read.FieldCount; i++)
{
Console.WriteLine("필드이름 : {0} \n", read.GetName(i));
}
Console.WriteLine("총필드 개수는" + read.FieldCount);
read.Close();
}
catch (Exception ex)
{
Console.WriteLine("에러발생{0}", ex.Message);
}
finally
{
if (conn != null)
{
conn.Close(); //데이터베이스 연결 해제
Console.WriteLine("데이터베이스 연결 해제..");
}
}
}
}
'프로그램 세상 > C#' 카테고리의 다른 글
텍스트 박스에 숫자와 소수점, 백스페이스만 입력가능하게 하는 이벤트 (0) | 2009.10.02 |
---|---|
[C# 기초] 어트리뷰트 (Attribute) - DllImport "스크랩" (0) | 2009.10.02 |
[C#] 윈도우즈의 폴더 경로 가져오기 (0) | 2009.10.02 |
[C#] SQL Server Compact 3.5 를 활용한 로컬 데이터베이스 연결하기 (0) | 2009.10.02 |
Process Kill 하기 (0) | 2009.10.02 |