Menu

MYSQL TUTORIALS - MySQL Transactions

MySQL Transactions

ADVERTISEMENTS

Transaction-Safe Table Types in MySQL:

root@host# mysql -u root -p password;
Enter password:*******
mysql> use TUTORIALS;
Database changed
mysql> create table tcount_tbl
    -> (
    -> tutorial_author varchar(40) NOT NULL,
    -> tutorial_count  INT
    -> ) TYPE=InnoDB;
Query OK, 0 rows affected (0.05 sec)

ADVERTISEMENTS
ADVERTISEMENTS