導航:首頁 > 文件教程 > sqlconnection配置文件

sqlconnection配置文件

發布時間:2023-08-30 20:17:06

1. SQL Server 2012安裝配置文件路徑能改嗎怎麼改

SQL Server 2012安裝配置文件路徑能改,修改方法為:

1、在Oracle的安裝文件下查找tnsnames.ora文件。

2. 。net中,把資料庫(SQL2005)連接字元串寫到配置文件中,配置文件都用xml寫嗎用xml寫完放在哪裡

網站或項目里有個web.config
寫在那裡面,
<connectionStrings>
<add name="ConnectionString" connectionString="server=(local);database=ConsumeWorld;uid=sa;pwd=sa;Timeout=200;" />
</connectionStrings>
寫在<system.web>外面,和<system.web> 同級
<system.web>
</system.web>

3. mysql的數據連接池怎麼配置文件

mysql的數據連接池怎麼配置文件
連接先建立一些連接,並且這些連接允許共享,因此這樣就節省了每次連接的時間開銷。Mysql資料庫為例,連接池在Tomcat中的配置與使用。
1、創建資料庫Student,表student
2、配置server.xml文件。Tomcat安裝目錄下conf中server.xml文件。
<GlobalNamingResources>
<Resource
name="jdbc/DBPool"
type="javax.sql.DataSource"
password=""
driverClassName="com.mysql.jdbc.Driver"
maxIdle="2"
maxWait="5000"
username="root"
url="jdbc:mysql://localhost:3306/student"
maxActive="3"
/>
</GlobalNamingResources>
name:指定連接池的名稱
type:指定連接池的類,他負責連接池的事務處理
url:指定要連接的資料庫
driverClassName:指定連接資料庫使用的驅動程序
username:資料庫用戶名
password:資料庫密碼
maxWait:指定最大建立連接等待時間,如果超過此時間將接到異常
maxIdle:指定連接池中連接的最大空閑數
maxActive:指定連接池最大連接數
3、配置web.xml文件。
<web-app>
<resource-ref>
<description>mysql資料庫連接池配置</description>
<res-ref-name>jdbc/DBPool</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
<res-sharing-scope>Shareable</res-sharing-scope>
</resource-ref>
</web-app>
4、配置context.xml文件
與server.xml文件所在的位置相同。
<Context>
<ResourceLink
name="jdbc/DBPool"
type="javax.sql.DataSource"
global="jdbc/DBPool"
/>
</Context>
5、測試
DataSource pool = null;
Context env = null;
Connection conn = null;
Statement st = null;
ResultSet rs = null;
try{
env = (Context)new InitialContext().lookup("java:comp/env");
//檢索指定的對象,返回此上下文的一個新實例
pool = (DataSource)env.lookup("jdbc/DBPool");
//獲得資料庫連接池
if(pool==null){out.printl("找不到指定的連接池!");}
con = pool.getConnection();
st = con.createStatement();
rs = st.executeQuery("select * from student");
}catch(Exception ex){out.printl(ne.toString());}

4. SQL2005遠程連接資料庫伺服器如何配置WEB.CONFIG文件

WEBCONFIG只能放資料庫連接的方法
<appSettings>
<add key="yourStr" value="server=.;database=test;uid=sa;pwd=sa"></add>
</appSettings>

SqlConnection con=new SqlConnection(ConfigurationSettings.AppSettings["yourStr"]);

要引包:using System.Configuration;

閱讀全文

與sqlconnection配置文件相關的資料

熱點內容
網路標號怎麼用 瀏覽:352
會議上文件讀好後要說什麼 瀏覽:783
安裝壓縮文件office 瀏覽:417
2014年網路營銷大事件 瀏覽:186
首頁全屏安裝代碼 瀏覽:39
黨規黨紀指的哪些文件 瀏覽:995
windows編程圖形界面用什麼設置 瀏覽:266
deb文件安裝路徑 瀏覽:540
飛鴿傳送提示文件名太長 瀏覽:486
日服文件名 瀏覽:648
宏程序和編程哪個好學 瀏覽:965
怎麼打開微信中的文件怎麼打開方式打開方式 瀏覽:98
wordpressgbk版本 瀏覽:328
怎麼看網路的帶寬多少兆 瀏覽:930
word文檔粘貼出現文件包 瀏覽:673
u盤文件傳輸 瀏覽:593
飛行棋教程視頻 瀏覽:629
程序員下載網站 瀏覽:303
蘋果5為什麼不顯示4g網路 瀏覽:741
怎麼做好互聯網公司的微信公眾號 瀏覽:135

友情鏈接