Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
IDbCommand and Parameters.AddWithValue()
Message
 
 
Information générale
Forum:
ASP.NET
Catégorie:
ADO.NET
Versions des environnements
Environment:
C# 2.0
Divers
Thread ID:
01538772
Message ID:
01538773
Vues:
46
>Hi,
>
>I am working on a case of replacing what the gurus call "programming to class" with "programming to interface" for the following code:
>
>First, the code the way it works currently (not with interface)
>
>OleDbCommand oCommand = new OleDbCommand();
>// connectionString is valid string (not shown here)
>OleDbConnection oConnection = new OleDbConnection(connectionString);
>oConnection.Open();
>oCommand.CommandText = "SP_MyProc";
>oCommand.CommandType = CommandType.StoredProcedure;
>oCommand.Parameters.AddWithValue( "@par1", cPar1 );
>
>
>The following is my replacement code (simplified):
>
>IDbCommand oCommand;
>idbCommand = new OleDbCommand();
>// connectionString is valid string (not shown here)
>OleDbConnection oConnection = new OleDbConnection(connectionString);
>oConnection.Open();
>oCommand.CommandText = "SP_MyProc";
>oCommand.CommandType = CommandType.StoredProcedure;
>oCommand.Parameters.AddWithValue( "@par1", cPar1 );
>
>
>The problem is that in the lower case code the method .AddWithValue has an error:
>
>'System.Data.IDataParameterCollection' does not contain definition for 'AddWithValue'
>
>
>What am I missing? TIA.

I suggest to not use AddWithValue method in any of your new code. Use more verbose, but correct Parameters.Add method where you can specify parameter's type. AddWithValue method has problems and it's even being deprecated.
If it's not broken, fix it until it is.


My Blog
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform