MySQL提交和回滚失败

发布于 2025-01-04 22:43:07 字数 1071 浏览 1 评论 0原文

我有一个问题。

try {                   
    jdbcConnect( ); //get mysql connect
    conn.setAutoCommit( false );

    pstmt = conn.prepareStatement ( 
                    "INSERT INTO member ( member_name, member_introduce ) VALUES ( ?, ? )", Statement.RETURN_GENERATED_KEYS );

    pstmt.setString( 1, "something" );
    pstmt.setString( 2, "something" );
    pstmt.executeUpdate( );
    rs = pstmt.getGeneratedKeys( );
    rs.next( );
    String no = Integer.toString( rs.getInt( 1 );

    pstmt = conn.prepareStatement ( "UPDATE account SET account_name = ? WHERE account_no = ?" );
    pstmt.setString( 1, "something");
    pstmt.setString( 2, no );
    pstmt.executeUpdate( );

    conn.commit( );         
    conn.setAutoCommit( true );

} catch ( SQLException t ) {            
    try {
        if (conn != null) {
            conn.rollback();
            conn.setAutoCommit( true );
        }
    } catch ( SQLException e ) {
    }
}//close conn and prepareStatement 

我期待工作承诺。

但如果update语句发生错误,insert语句正在运行。

怎么了?

I have a problem.

try {                   
    jdbcConnect( ); //get mysql connect
    conn.setAutoCommit( false );

    pstmt = conn.prepareStatement ( 
                    "INSERT INTO member ( member_name, member_introduce ) VALUES ( ?, ? )", Statement.RETURN_GENERATED_KEYS );

    pstmt.setString( 1, "something" );
    pstmt.setString( 2, "something" );
    pstmt.executeUpdate( );
    rs = pstmt.getGeneratedKeys( );
    rs.next( );
    String no = Integer.toString( rs.getInt( 1 );

    pstmt = conn.prepareStatement ( "UPDATE account SET account_name = ? WHERE account_no = ?" );
    pstmt.setString( 1, "something");
    pstmt.setString( 2, no );
    pstmt.executeUpdate( );

    conn.commit( );         
    conn.setAutoCommit( true );

} catch ( SQLException t ) {            
    try {
        if (conn != null) {
            conn.rollback();
            conn.setAutoCommit( true );
        }
    } catch ( SQLException e ) {
    }
}//close conn and prepareStatement 

I was expect working commit.

But If an error occurs update statement, insert statement is running.

What is wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

被你宠の有点坏 2025-01-11 22:43:07

我认为您使用的是 MyISAM 表而不是 InnoDB。 MyISAM 根本不支持事务。

I think that you are using MyISAM table instead of InnoDB. MyISAM does not support transaction at all.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文