连接数据库
Posted abelangelo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了连接数据库相关的知识,希望对你有一定的参考价值。
Web.config中的写法
<configuration>
<appSettings>
<add key="DbType" value="1"/>
<add key="DbConnection" value="Data Source=(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=192.168.0.203)(PORT=1521)))(CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=cdrtest)));User Id=saipadmin;Password=saipmanager;Pooling=true;Min Pool Size=0;Max Pool Size=100;Connection Timeout=60;Connection Lifetime=0;Persist Security Info=true"/>
</appSettings>
<system.web>
<compilation debug="true"/>
</system.web>
</configuration>
string type = System.Configuration.ConfigurationManager.AppSettings["DbType"];
string connect = System.Configuration.ConfigurationManager.AppSettings["DbConnection"];
以上是关于连接数据库的主要内容,如果未能解决你的问题,请参考以下文章