關於config檔案中的DB鏈結字串

2022-04-28 08:42:23 字數 1653 閱讀 6462

經常用到所以記錄下來,免得找找麻煩 ヘ(-_-ヘ フフフフフ

不管是本地windows程式

還是web應

用,都可以用兩

種方法儲存寫連

接資料字串配置,分別

期用的, connectionstrings為.net framework 2.0新增,只能用於儲存資料

庫連線字串。**中分

別使用configurationmanager.connectionstrings["name"]

行呼叫。

使用方法如下:

在 configuration 元素中,

建立乙個名

為 connectionstrings 的新元素

1.使用connectionstrings

使用db認證時如下所示

<

connectionstrings

>

<

add name="

connectionstringname

"connectionstring="

data source=伺服器名;initial catalog=資料庫名;user id=使用者;password=密碼

"providername="

system.data.sqlclient

"/>

connectionstrings

>

在使用windows統合認證時如下所示(例為連線到本地的northwind例項資料庫)

<

connectionstrings

>

<

add 

name="

northwindconnection

"connectionstring="

data source=localhost;integrated security=sspi;initial catalog=northwind;

"/>

connectionstrings

>

注:integrated security的值為sspi或者true都可表示使用windows統合認證。

在裡,在頁面

還可以這樣引用

<%$ connectionstring:name%>. 例如

<

asp:sqldatasource id="

productsdatasource

"runat="

server

"selectcommand="

select * from products

"connectionstring="

<%$ connectionstrings: northwindconnection %>

"asp:sqldatasource

>

<

add key="

connectionstringname

"value="

data source=伺服器名或ip;initial catalog=資料庫名;persist security info=false;user id=使用者;password=密碼;packet size=4096

">

add>

關於鏈結字串的更詳細資訊,請參考msdn

關於 config檔案生成的編譯過程。

1.kernel makefile 中有 config scripts basic outputmakefile force q mkdir p include linux include config make build scripts kconfig 其中build f scripts mak...

關於Vue 配置config 檔案詳解

有些針對 vue cli的全域性配置,例如你慣用的包管理器和你本地儲存的 preset,都儲存在 home 目錄下乙個名叫.vuerc的 json 檔案。你可以用編輯器直接編輯這個檔案來更改已儲存的選項。你也可以使用vue config命令來審查或修改全域性的 cli 配置。請查閱指南中的瀏覽器相容...

flask 中的配置config檔案

sqlalchemy database uri mysql pymysql 動態追蹤資料庫的修改.sqlalchemy track modifications false 會列印原生sql語句,便於觀察測試 sqlalchemy echo true 會列印原生sql語句,便於觀察測試 在flask專...