problem is solved now.
My my.cnf file contains the entry "skip-innodb"
If i adapt this file and put this entry in comment.
Restart mysqld
Redo test
It works now
If i do exactly likes what is mention in section 15.7.1 page 807 of the MySQL Reference Manual 5.0.3-Alpha i get :
mysql> use test
Database changed
mysql> create table customer (a int, b char(20), index (a)) type=InnoDB;
Query OK, 0 rows affected, 2 warnings (0.05 sec)
mysql> begin;
Query OK, 0...
i have installed mysql-server-4.1.8a-4 and
mysql-client-4.1.8a-4 on Linux 2.6.9
mysql is working correctly;
the rollback is not working :
mysql> insert into tran_test (a,b) values (1,2);
Query OK, 1 row affected (0.01 sec)
mysql> select * from tran_test;
+------+------+
| a...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.