MySQL: AUTOCOMMIT, COMMIT, ROLLBACK

แชร์
ฝัง
  • เผยแพร่เมื่อ 7 พ.ย. 2024

ความคิดเห็น • 33

  • @BroCodez
    @BroCodez  2 ปีที่แล้ว +36

    In case you accidentally delete all the rows AND THEN commit, here's the rows again:
    INSERT INTO employees
    VALUES (1, 'Eugene', 'Krabs', 25.50, '2023-01-02'),
    (2, 'Squidward', 'Tentacles', 15.00, '2023-01-03'),
    (3, 'Spongebob', 'Squarepants', 12.50, '2023-01-04'),
    (4, 'Patrick', 'Star', 12.50, '2023-01-05'),
    (5, 'Sandy', 'Cheeks', 17.25, '2023-01-06');

  • @IvoryMadness.
    @IvoryMadness. 6 หลายเดือนก่อน +3

    Thanks, mate! I had to use the autocommit = off and then just execute "commit;" to make my transactions work!

  • @davidc8717
    @davidc8717 ปีที่แล้ว +10

    Shouldn't you use START TRANSACTION; to begin? or is that unneeded in MySQL? To be honest I've never not done it that way, just assumed it was needed.

  • @theblan1k0ne
    @theblan1k0ne หลายเดือนก่อน +3

    bro casually fired and rehired everyone in the span of 2 minutes

  • @happyathiest1564
    @happyathiest1564 7 หลายเดือนก่อน +2

    That's a lot of accidents lol Great explanation. Thank you

  • @jeovannilunalopez
    @jeovannilunalopez 5 หลายเดือนก่อน

    You make these programs look easy af!

  • @conengineer
    @conengineer 10 หลายเดือนก่อน

    its helpful and important to me thanks ❤

  • @Laturkar_brand237
    @Laturkar_brand237 8 หลายเดือนก่อน

    Working of Commit and rollback both are same ?

  • @adhy612000151
    @adhy612000151 ปีที่แล้ว

    thank you for your explanation! God bless!

  • @itsme9877
    @itsme9877 หลายเดือนก่อน +1

    But i had not done the autocommit step.. Deleted all the rows from the table in my office work..

  • @akna1987
    @akna1987 10 หลายเดือนก่อน +2

    you forgot to explain about how to use start transaction;

  • @oluwamohmzy4651
    @oluwamohmzy4651 ปีที่แล้ว

    Thank u very much

  • @frozenheart4855
    @frozenheart4855 ปีที่แล้ว +2

    really a bro who can explain and implement the concept in less than 3 minutes your video is really helpful Who did cs with DB:)
    thank a lot sharing the content-free

  • @amirsaid
    @amirsaid 2 ปีที่แล้ว +2

    plz could u make a java udp tutorial

  • @andredubbs4854
    @andredubbs4854 2 ปีที่แล้ว

    Great vid bro!

  • @visheshmukherjee9458
    @visheshmukherjee9458 2 ปีที่แล้ว

    Thank you bro!!

  • @noodledealer7447
    @noodledealer7447 2 ปีที่แล้ว

    thanks bro

  • @seancarlopiodo2685
    @seancarlopiodo2685 ปีที่แล้ว

    what if I accidentally delete 1 row in my table, that commnad will work or not ? if it's not what way should I do ?

  • @tsunamio7750
    @tsunamio7750 9 หลายเดือนก่อน

    What's this?! Bro, just live on the edge! Be a runner, drop the autocommit stuff! Bro, trust me bro.

  • @sil6796
    @sil6796 ปีที่แล้ว

    Let's Game It Out

  • @DevMe-f5v
    @DevMe-f5v ปีที่แล้ว

    not working in different sql editor

  • @itSinger
    @itSinger 3 หลายเดือนก่อน

    I

  • @Gametimewithsurya
    @Gametimewithsurya 3 หลายเดือนก่อน

    bro is bro

  • @mohaymenul-islam
    @mohaymenul-islam หลายเดือนก่อน

    ✅ 9th October - 2024

  • @saifsatti2998
    @saifsatti2998 ปีที่แล้ว +2

    It is not working bro.

    • @polapellyshravan5901
      @polapellyshravan5901 11 หลายเดือนก่อน +7

      i think delete from employee, commit, rollback are not working right? that because your mySQL editor is in safe mode .
      disable the safe mode using query: SET SQL_SAFE_UPDATES = 0;
      then delete from employee, commit, rollback query works.
      inorder to enable safe mode, use query: SET SQL_SAFE_UPDATES = 1;

    • @DhavalAhir10
      @DhavalAhir10 6 หลายเดือนก่อน


      Why you are using COMMIT after deleted your rows?
      You can't ROLLBACK after this...
      You should first create starting endpoint with COMMIT; and then you should try to delete everything, afterwards you can use ROLLBACK.

    • @mikegriffin7556
      @mikegriffin7556 22 วันที่ผ่านมา

      @@polapellyshravan5901 Thank you for your post about safe mode. That was very helpful.

  • @OpinionOfX
    @OpinionOfX ปีที่แล้ว +1

    Ravish kumar official

  • @MISA-qy4hx
    @MISA-qy4hx ปีที่แล้ว

    This doesn't work with truncate!