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');