SqlParameterCollection.AddWithValue メソッド
アセンブリ: System.Data (system.data.dll 内)

Dim instance As SqlParameterCollection Dim parameterName As String Dim value As Object Dim returnValue As SqlParameter returnValue = instance.AddWithValue(parameterName, value)
- parameterName
パラメータの名前。
SqlParameter オブジェクト。


AddWithValue メソッドを使用する方法の例を次に示します。
Private Sub UpdateDemographics(ByVal customerID As Integer, _ ByVal demoXml As String, _ ByVal connectionString As String) ' Update the demographics for a store, which is stored ' in an xml column. Dim commandText As String = _ "UPDATE Sales.Store SET Demographics = @demographics " _ & "WHERE CustomerID = @ID;" Using connection As New SqlConnection(connectionString) Dim command As New SqlCommand(commandText, connection) ' Add CustomerID parameter for WHERE clause. command.Parameters.Add("@ID", SqlDbType.Int) command.Parameters("@ID").Value = customerID ' Use AddWithValue to assign Demographics. ' SQL Server will implicitly convert strings into XML. command.Parameters.AddWithValue("@demographics", demoXml) Try connection.Open() Dim rowsAffected As Integer = command.ExecuteNonQuery() Console.WriteLine("RowsAffected: {0}", rowsAffected) Catch ex As Exception Console.WriteLine(ex.Message) End Try End Using End Sub
private static void UpdateDemographics(Int32 customerID, string demoXml, string connectionString) { // Update the demographics for a store, which is stored // in an xml column. string commandText = "UPDATE Sales.Store SET Demographics = @demographics " + "WHERE CustomerID = @ID;"; using (SqlConnection connection = new SqlConnection(connectionString)) { SqlCommand command = new SqlCommand(commandText, connection); command.Parameters.Add("@ID", SqlDbType.Int); command.Parameters["@ID"].Value = customerID; // Use AddWithValue to assign Demographics. // SQL Server will implicitly convert strings into XML. command.Parameters.AddWithValue("@demographics", demoXml); try { connection.Open(); Int32 rowsAffected = command.ExecuteNonQuery(); Console.WriteLine("RowsAffected: {0}", rowsAffected); } catch (Exception ex) { Console.WriteLine(ex.Message); } } }

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Weblioに収録されているすべての辞書からSqlParameterCollection.AddWithValue メソッドを検索する場合は、下記のリンクをクリックしてください。

- SqlParameterCollection.AddWithValue メソッドのページへのリンク