發表文章

目前顯示的是 10月, 2013的文章

[ASP.Net]從 Web.config 檔案讀取連接字串

在ASP.Net與資料庫連結的時候,如果把連線字串寫在程式碼中,當連線失敗的時候網頁會出現程式碼哪幾行出錯,此時會將連線字串中的登入的帳號和密碼一併秀出,這樣被看光光時在非常的不好,所以才想到要直接去讀取Web.config裡面的連線字串。 這就是自學的壞處,常會使用錯誤的方法來撰寫,然後才能在錯誤中掙扎著長大...慘 參考網址:  http://msdn.microsoft.com/zh-tw/library/ms178411%28v=vs.100%29.aspx?cs-save-lang=1&cs-lang=vb#code-snippet-1 '讀取Web.config的連接字串 Dim rootWebConfig As System.Configuration.Configuration rootWebConfig = System.Web.Configuration.WebConfigurationManager.OpenWebConfiguration("/ASP_Test") '填入檔案所屬的路徑 Dim connString As System.Configuration.ConnectionStringSettings If (rootWebConfig.ConnectionStrings.ConnectionStrings.Count > 0) Then connString = rootWebConfig.ConnectionStrings.ConnectionStrings("LocalEMSConnectionString") '選擇要讀取的連線名稱 If Not (connString.ConnectionString = Nothing) Then Console.WriteLine("Northwind connection string = {0}", connString.ConnectionString) Else Con

[SQL]MS SQL Server的最大容量規格

圖片
更詳細的資料 http://technet.microsoft.com/zh-tw/library/ms143432.aspx 下表指定 SQL Server 資料庫中已定義或 Transact-SQL 陳述式中所參考之各種物件的大小和數目上限。 SQL Server Database Engine 物件 SQL Server 大小/數目上限 (32 位元) SQL Server 大小/數目上限 (64 位元) 批次大小 1 65,536 * 網路封包大小 65,536 * 網路封包大小 每個短字串資料行的位元組數

[SQL]指令:列出某資料庫中資料表清單(Table list)及資料表數量

圖片
環境:MS SQL Server 2012 Table List指令: SELECT * FROM LocalEMS.INFORMATION_SCHEMA.TABLES where TABLE_TYPE='BASE TABLE' Table Count指令 SELECT count(*) FROM LocalEMS.INFORMATION_SCHEMA.TABLES where TABLE_TYPE='BASE TABLE'