Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Pros and Cons of using SqlCommand Prepare in C#?

When i was reading books to learn C# (might be some old Visual Studio 2005 books) I've encountered advice to always use SqlCommand.Prepare everytime I execute SQL call (whether its' a SELECT/UPDATE or INSERT on SQL SERVER 2005/2008) and I pass parameters to it. But is it really so?

  1. Should it be done every time? Or just sometimes?

  2. Does it matter whether it's one parameter being passed or five or twenty?

  3. What boost should it give if any? Would it be noticeable at all (I've been using SqlCommand.Prepare here and skipped it there and never had any problems or noticeable differences).

For the sake of the question this is my usual code that I use, but this is more of a general question.

public static decimal pobierzBenchmarkKolejny(string varPortfelID, DateTime data, decimal varBenchmarkPoprzedni, decimal varStopaOdniesienia) {     const string preparedCommand = @"SELECT [dbo].[ufn_BenchmarkKolejny](@varPortfelID, @data, @varBenchmarkPoprzedni,  @varStopaOdniesienia) AS 'Benchmark'";     using (var varConnection = Locale.sqlConnectOneTime(Locale.sqlDataConnectionDetailsDZP)) //if (varConnection != null) {     using (var sqlQuery = new SqlCommand(preparedCommand, varConnection)) {         sqlQuery.Prepare();         sqlQuery.Parameters.AddWithValue("@varPortfelID", varPortfelID);         sqlQuery.Parameters.AddWithValue("@varStopaOdniesienia", varStopaOdniesienia);         sqlQuery.Parameters.AddWithValue("@data", data);         sqlQuery.Parameters.AddWithValue("@varBenchmarkPoprzedni", varBenchmarkPoprzedni);         using (var sqlQueryResult = sqlQuery.ExecuteReader())             if (sqlQueryResult != null) {                 while (sqlQueryResult.Read()) {                  }             }     } } 

Additional clarification:

If i move sqlQuery.Prepare() like in code below exception is thrown that the size has to be explicitly declared, which basically leads me to thinking that having sqlQuery.Prepare() as first makes it useless? Can someone show the proper usage using my example?

public static decimal pobierzBenchmarkKolejny(string varPortfelID, DateTime data, decimal varBenchmarkPoprzedni, decimal varStopaOdniesienia) {     const string preparedCommand = @"SELECT [dbo].[ufn_BenchmarkKolejny](@varPortfelID, @data, @varBenchmarkPoprzedni,  @varStopaOdniesienia) AS 'Benchmark'";     using (var varConnection = Locale.sqlConnectOneTime(Locale.sqlDataConnectionDetailsDZP)) //if (varConnection != null) {     using (var sqlQuery = new SqlCommand(preparedCommand, varConnection)) {          sqlQuery.Parameters.AddWithValue("@varPortfelID", varPortfelID);         sqlQuery.Parameters.AddWithValue("@varStopaOdniesienia", varStopaOdniesienia);         sqlQuery.Parameters.AddWithValue("@data", data);         sqlQuery.Parameters.AddWithValue("@varBenchmarkPoprzedni", varBenchmarkPoprzedni);         sqlQuery.Prepare();         using (var sqlQueryResult = sqlQuery.ExecuteReader())             if (sqlQueryResult != null) {                 while (sqlQueryResult.Read()) {                  }             }     } } 

How would I do that? By adding .size next to parameters and doing varPortfel.Lenght if it's a string etc?

like image 262
MadBoy Avatar asked Mar 15 '10 19:03

MadBoy


People also ask

Why do we use SqlCommand?

SQL stands for Structured Query Language. SQL commands are the instructions used to communicate with a database to perform tasks, functions, and queries with data. SQL commands can be used to search the database and to do other functions like creating tables, adding data to tables, modifying data, and dropping tables.

What does command prepare do?

By calling Prepare , it will take the process as far as possible towards the execution, without actually running the execution plan. This is useful when running the same command over and over. You will save some execution time, as the whole process doesn't have to be repeated each time.

Why do we need SqlCommand in C#?

SqlCommand in C# allow the user to query and send the commands to the database. SQL command is specified by the SQL connection object. Two methods are used, ExecuteReader method for results of query and ExecuteNonQuery for insert, Update, and delete commands. It is the method that is best for the different commands.


1 Answers

From the MSDN Documentation:

"Before you call Prepare, specify the data type of each parameter in the statement to be prepared. For each parameter that has a variable length data type, you must set the Size property to the maximum size needed. Prepare returns an error if these conditions are not met.

If you call an Execute method after calling Prepare, any parameter value that is larger than the value specified by the Size property is automatically truncated to the original specified size of the parameter, and no truncation errors are returned.

Output parameters (whether prepared or not) must have a user-specified data type. If you specify a variable length data type, you must also specify the maximum Size."

Furthermore, "If the CommandType property is set to TableDirect, Prepare does nothing. If CommandType is set to StoredProcedure, the call to Prepare should succeed, ..."

This in general is used to make sure that the end user is not using a SQL Injection technique to add or remove information you do not want them too from the database.

I looked into it and check out this article http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlcommand.prepare.aspx. Your issue is you need to define your parameters before you run .Prepare() and then set your parameters after you run .Prepare(). Right now you are doing both before. I would try something like this (Note I didn't test it so my syntax might be a bit off).

public static decimal pobierzBenchmarkKolejny(string varPortfelID, DateTime data, decimal varBenchmarkPoprzedni, decimal varStopaOdniesienia) {     const string preparedCommand = @"SELECT [dbo].[ufn_BenchmarkKolejny](@varPortfelID, @data, @varBenchmarkPoprzedni,  @varStopaOdniesienia) AS 'Benchmark'";     using (var varConnection = Locale.sqlConnectOneTime(Locale.sqlDataConnectionDetailsDZP)) //if (varConnection != null) {     using (var sqlQuery = new SqlCommand(preparedCommand, varConnection)) {          sqlQuery.Parameters.Add("@varPortfelID");         sqlQuery.Parameters.Add("@varStopaOdniesienia");         sqlQuery.Parameters.Add("@data");         sqlQuery.Parameters.Add("@varBenchmarkPoprzedni");          sqlQuery.Prepare();         sqlQuery.ExecuteNonQuery();//This might need to be ExecuteReader()          sqlQuery.Parameters[0].Value = varPortfelID;         sqlQuery.Parameters[1].Value = varStopaOdniesienia;         sqlQuery.Parameters[2].Value = data;         sqlQuery.Parameters[3].Value = varBenchmarkPoprzedni;          using (var sqlQueryResult = sqlQuery.ExecuteReader())             if (sqlQueryResult != null) {                 while (sqlQueryResult.Read()) {                  }             }     } } 
like image 82
Ben Hoffman Avatar answered Sep 16 '22 15:09

Ben Hoffman