appconfig配置文件连接数据库|EF框架Appconfig我配置了两个数据库连接字符串问题是怎么使用

1. EF框架App.config,我配置了两个数据库连接字符串,问题是怎么使用

自定义的类 不能使用using。需要释放或者关闭的可以用using 比如

using(SqlConnection conn=new SqlConnection()){}

你只能

DashengDbContext context = new DashengDbContext();

contenxt.方法();

假设是AppSettings节点下

string connectionString=

System.Configuration.ConfigurationManager.AppSettings["RSDbContext"];

或者 直接读取xml文件 即节点add 下的属性name=RSDbContext的

模仿下面的读取xml代码

//usingSystem.Xml;///<summary>///通过键获取appSettings的值///</summary>///<paramname="key"></param>///<returns></returns>(stringkey){XmlDocumentdoc=newXmlDocument();doc.Load(AppDomain.CurrentDomain.BaseDirectory+"config.xml");XmlNodenode=doc.DocumentElement.ChildNodes[1];//找到appSettings节点foreach(XmlNodechildNodeinnode.ChildNodes){if(childNode.Name=="add"&&childNode.Attributes["name"]!=null&&childNode.Attributes["name"].InnerText==key){returnchildNode.Attributes["connectionString"].InnerText;}}return"";}

2. c# 瀹夎呴儴缃蹭箣鍚庡備綍鏇存敼SQL杩炴帴瀛楃︿覆

宸ュ叿–杩炴帴鍒版暟鎹搴–濉鍐欎綘鐨勬暟鎹搴撴湇鍔″櫒鐨勫悕瀛-鍦ㄤ笅闈㈤夋嫨濂戒綘闇瑕佺殑鏁版嵁搴–纭瀹氬氨ok浜嗐鍏充簡绐椾綋鍚庡湪vs涓婇潰浼氬嚭鐜颁竴涓鏈嶅姟鍣ㄧ殑妗嗘嗐傚彸鍑讳綘閫夊ソ鐨勬暟鎹搴–灞炴–灏变細鍑烘潵涓涓灞炴ф嗘嗐傜涓涓灏辨槸鏁版嵁搴撹繛鎺ュ瓧绗︿覆

3. 数据库连接失败,请检查目录下的 config 文件,如何重新进行正确配置

数据库连接字符串配置正确吗?打开Web.config文件,检查一下数据库连接配置。比如:<?xml version="1.0"?><configuration> <configSections> <section name="dataConfiguration" type="Microsoft.Practices.EnterpriseLibrary.Data.Configuration.DatabaseSettings, Microsoft.Practices.EnterpriseLibrary.Data, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null"/> </configSections> <dataConfiguration defaultDatabase="default"/> <connectionStrings> <add name="default" connectionString="Server=192.168.101.100;Database=DBName;User ID=test;Password=test" providerName="System.Data.SqlClient"/> </connectionStrings>…….</configuration>

4. thinkphp配置文件里面要使用到数据库的数据怎么办,在config.php文件里面可以连接、获取数据库的数据吗

config.php是用来设置相关的sql连接项,比如连接类型 连接帐号 密码 端口 数据库选择等.在要使用到数据库的数据时,在控制器中先初始化该表的model,如$user = M('User');


赞 (0)