sql >> データベース >  >> RDS >> Mysql

VB.NETおよびMySqlUPDATEクエリ

    コマンドテキストもパラメータ化する必要があります

    cmd.CommandText = " UPDATE incomingdeliveries SET Quantity = @iQuantity + Quantity"
    cmd.Parameters.Add(New MySqlParameter("@iQuantity", txtQty.Text))
    

    アップデート1

    Using _conn As New MySqlConnection("connectionStr here")
        Using _comm As New MySqlCommand()
            With _comm
                .Connection = _conn
                .CommandText = "UPDATE incomingdeliveries SET Quantity = @iQuantity + Quantity"
                .CommandType = CommandType.Text
                .Parameters.AddWithValue("@iQuantity", txtQty.Text)
            End With
            Try
                _conn.Open()
                _comm.ExecuteNonQuery()
            Catch ex As MySqlException
                Msgbox(ex.Message.ToString())
            End Try
        End Using
    End Using
    



    1. IDの自動インクリメントをリセットしますか? phpmyadmin

    2. tsqlでは、同時実行の観点から安全なSelectステートメントを含むInsertはありますか?

    3. MySQL Workbenchとは何ですか?

    4. データベースの列文字列がsqliteのクエリのサブ文字列であるかどうかを確認します