일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 오라클
- 자바스크립트
- DataGrid
- replace()
- aspnet
- ASP
- attr()
- 태그를 입력해 주세요.
- 단축키
- 이클립스
- c#
- Excel
- 프로시저
- javascript
- windows
- jQuery
- SSRS
- IIS
- 윈도우
- 윈폼
- 비주얼스튜디오
- 리포팅서비스
- CONVERT()
- microsoft
- 엑셀
- Winform
- oracle
- MSSQL
- MS
- 마이크로소프트
- Today
- Total
DJ메탈짱™의 Free Style
다른 서버의 스키마 정보 반환(SqlConnection) 본문
타 서버의 스키마 정보를 필요로 하는 경우
해당 서버의 스키마 정보를 반환하는 메소드를 SqlConnection 에서 제공하고 있습니다.
아래 메소드 참고하시길 바랍니다.
/// <summary>
/// 작성일 : 2009/03/23
/// 작성자 : bhchoi
/// <remarks>데이터베이스 목록 반환.</remarks>
/// </summary>
/// <param name="conStr">Connection String</param>
/// <returns>DataTable</returns>
public DataTable GetDataBaseList(string conStr)
{
DataTable dtTable = null ;
using (SqlConnection sqlConx = new SqlConnection(conStr))
{
sqlConx.Open();
dtTable = sqlConx.GetSchema("Databases");
sqlConx.Close();
}
return dtTable;
}
/// <summary>
/// 작성일 : 2009/03/23
/// 작성자 : bhchoi
/// <remarks>테이블 목록 반환.</remarks>
/// </summary>
/// <param name="conStr">Connection String</param>
/// <returns>DataTable</returns>
public DataTable GetTableList(string conStr)
{
DataTable dtTable = null;
using (SqlConnection sqlConx = new SqlConnection(conStr))
{
sqlConx.Open();
dtTable = sqlConx.GetSchema("Tables");
sqlConx.Close();
}
return dtTable;
}
/// <summary>
/// 작성일 : 2009/03/23
/// 작성자 : bhchoi
/// <remarks>컬럼 목록 반환.</remarks>
/// </summary>
/// <param name="conStr">Connection String</param>
/// <param name="tableName">테이블명</param>
/// <returns>DataTable</returns>
public DataTable GetColumnList(string conStr, string tableName)
{
DataTable dtTable = null;
using (SqlConnection sqlConx = new SqlConnection(conStr))
{
sqlConx.Open();
dtTable = sqlConx.GetSchema("Columns", new string[4] { null, null, tableName, null});
sqlConx.Close();
}
return dtTable;
}
'일(job) > MS(Microsoft)' 카테고리의 다른 글
VS2010(Visual studio) - JScript Editor Extensions (0) | 2016.05.27 |
---|---|
VisualStudio2010(VS2010) 편집기 하일라이트 기능 (0) | 2016.05.27 |
Visual Studio 2005 Team Editions 비교 (0) | 2016.05.27 |
윈도우비스타(VISTA) + VS2005 에서 디버깅 실행시 오류 발생 (0) | 2016.05.27 |
클래스 및 메소드 Comment Show (Visual Studio) (0) | 2016.04.07 |