제목 : 각 DB별(SQL/Oracle) 데이터베이스 연결 문자열 샘플
글번호:
|
|
239
|
작성자:
|
|
레드플러스
|
작성일:
|
|
2008/06/25 오후 3:49:00
|
조회수:
|
|
6794
|
<!-- 데이터베이스 연결 문자열 기록 -->
<connectionStrings>
<!--[1] SQL Server에 연결-->
<add name="SqlServer"
connectionString=
"server=.;database=temp;uid=sa;pwd=1234;"
providerName="System.Data.SqlClient" />
<!--[2] App_Data/XXX.MDF에 연결 -->
<add name="LocalDatabase"
connectionString=
"Data Source=.\SQLEXPRESS;
AttachDbFilename=|DataDirectory|\Database.mdf;
Integrated Security=True;User Instance=True"
providerName="System.Data.SqlClient" />
<!--[3] Oracle 데이터베이스 연결 -->
<add name="Oracle"
connectionString=
"Provider=MSDAORA.1;
Password=hr;
User ID=hr;
Data Source=//172.16.10.108/orcl;
Persist Security Info=True" />
</connectionStrings>