這是一個奇怪的一個我。無法的SqlParameter添加到SqlCommand的
的Add
參數方法的簽名要求SqlType
但是當我使用
//Create and open a connection to SQL Server
SqlConnection connection = new SqlConnection(DatabaseHelper.ConnectionString);
connection.Open();
//Create a Command object
SqlCommand command = new SqlCommand("stpInsertFile", connection);
command.CommandType = System.Data.CommandType.StoredProcedure;
command.Parameters.Add("@LastMod", System.Data.SqlTypes.SqlDateTime);
它顯示了這個錯誤:
'System.Data.SqlTypes.SqlDateTime' is a 'type', which is not valid in the given context
的解釋好,謝謝。我想我盯着屏幕太久了! – JohnnyBizzle 2014-10-01 16:33:53