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

C#を使用して挿入された行のIDを取得します

    MySqlCommand comm = connect.CreateCommand();
    comm.CommandText = insertStatement;  // Set the insert statement
    comm.ExecuteNonQuery();              // Execute the command
    long id = comm.LastInsertedId;       // Get the ID of the inserted item
    


    1. PostgreSQLにテーブルが存在するかどうかを確認する5つの方法

    2. SQLServerの「datetime2」ストレージサイズを理解する

    3. オフラインアプリケーションのバックアップを作成するための最良の方法はありますか?

    4. MariaDBまたはMySQLデータベースの物理バックアップを作成する