여러 종류의 데이터베이스에 연결할 때 사용할 문자열입니다.
참고용으로 작성했습니다.
// MSSQL Server
using System.Data.SqlClient;
string strConnection = "server= IP(또는 도메인);uid=사용자명;pwd=암호;database=db_name";
// LocalDb
using System.Data.SqlClient;
string strConnection = @"Data Source=(LocalDB)\MSSQLLocalDB;Initial Catalog=db_name;Integrated Security=True";
// MySQL
using MySql.Data.MySqlClient;
string strConnection = "server=IP(또는 도메인);uid=사용자명;pwd=암호;database=db_name";
// Oracle
using Oracle.ManagedDataAccess.Client;
string strConnection = "DATA SOURCE=IP(또는 도메인); User Id=사용자명; Password=암호";
// Access (mdb, accdb)
using System.Data.OleDb;
string strConnection = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=db_name.accdb";
string strConnection = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=db_name.mdb";
// Excel
using System.Data.OleDb;
string path = @"C:\temp\zipcode2024.xlsx";
string strConn_xlsx = "Provider=Microsoft.ACE.OLEDB.12.0;" +
$"Data Source={path};Extended Properties=\"Excel 12.0 Xml;HDR=YES\"";
계속 추가 중 ...
예시
...
'C#' 카테고리의 다른 글
C#, using 키워드의 3가지 용도 (0) | 2024.10.13 |
---|---|
C#, 텍스트 파일 읽기 저장 StreamReader StreamWriter File.WriteAllText File.WriteAllLines ReadLine (0) | 2024.10.12 |
(C#) 폼 이벤트: Form_Load, FormClosing, FormClosed, 폼 닫기 (0) | 2024.05.14 |
(C#) MDI 다중 문서 인터페이스 Multiple Document Interface (0) | 2023.11.30 |
(C#) ComboBox, Dictionary(key, value) 사용하기 (0) | 2023.11.09 |