sqlconnection

    0熱度

    1回答

    我想了解連接超時和命令超時之間的關係,以及如何影響其他人。請考慮這個代碼作爲例子。 // declare the SqlDataReader, which is used in // both the try block and the finally block SqlDataReader rdr = null; // create a connection object SqlCon

    1熱度

    3回答

    在SSIS中我有以下連接字符串中定義的連接: Data Source=myserver;Initial Catalog=Spears;Provider=SQLNCLI11.1;Integrated Security=SSPI;Auto Translate=False; 我試圖使用從腳本任務這方面: ConnectionManager connectionManager = this.Dts.C

    5熱度

    1回答

    我遇到了一個奇怪的問題,即我能夠將調用的結果返回到存儲過程,但代碼追溯失敗。 public IEnumerable<T> ExecuteStoredProcedure<T>(string storedProcedureName, IDataMapper<T> mapper, IDictionary<string, object> parameters) { using (var con

    0熱度

    1回答

    所以我剛開始研究一個包含Web應用程序,Windows服務和UWP的更大項目。 我以爲用一個代碼庫就可以爲所有項目提供一個便攜式類庫。 現在我的第一個問題是,我不能使用SqlConnection類。 我得到以下錯誤: Error CS7069 Reference to type 'Component' claims it is defined in 'System', but it could n

    0熱度

    2回答

    我嘗試使用Ado.Net進行Sql連接。我創建一個ConsoleApplication並從我的數據庫中獲取值Name和UnitPrice。執行後Console表示無法打開連接。我犯了什麼錯誤? 這裏是我的代碼: using System; using System.Collections.Generic; using System.Data.SqlClient; using System.L

    0熱度

    1回答

    我想SQL服務器在我的虛擬機具有以下連接字符串連接:"Server=qqvm;Database=a_test;Integrated Security=False;User Id=sa;Password=<pass>;Connect Timeout=0" 首先我有「網絡連接」與內部異常訪問被拒絕「的異常空堆棧跟蹤。我做了一些挖掘並在SQL配置管理器中啓用了'命名管道'。 之後,我得到了這個例外: 連

    2熱度

    1回答

    TLDR:如何在我的Ninject綁定中重新使用或實例化新的Sql Connection對象? ****由於SqlConnection未初始化,第二個綁定失敗****。我假設我不能跨多個綁定共享sql連接? 我在這個模式一個SQL資料庫: public class SqlRepository<T> : DataConnection, IRepository<T> where T : new() {

    0熱度

    2回答

    我剛剛開始在Visual Studio中編寫SQL並將其與C#結合使用。 我在我的視覺工作室做了一個本地數據庫,但不知怎的我無法連接到它。它告訴我用戶登錄失敗domain\user 我使用這個代碼:using (SqlConnection dbConnection = new SqlConnection("Data Source = (LocalDB)\\MSSQLLocalDB;Database

    3熱度

    1回答

    如果我想將多個對象插入到SQL Server數據庫看來我必須這樣做: using (var command = new SqlCommand(@"INSERT INTO Table1 ( Param_1, Param_2, Param_3, ... ) VALUES ( @param1,

    0熱度

    2回答

    我得到,我們可以使用using在sqlconnection有多個命令。 像這樣: using (SqlConnection connection = new SqlConnection(connectionString)) { connection.Open(); using (SqlCommand command1 = new SqlCommand(commandText1