Luiz Rafael Culik Guimaraes wrote:
Daniel

I searched  all myql 4.0 what new page and did found any reference, is their
other page

Regards
Luiz

  
Press Release:
http://www.mysql.com/press/release_2002_11.html

Documentation:
http://www.mysql.com/doc/en/InnoDB_transaction_model.html
http://www.mysql.com/doc/en/InnoDB_overview.html

Basically, if you want transactions, you should use the InnoDB table type.

You do this by adding 'type=innodb' at the end of your 'create table' command:

create table MyTable ( enter table definition ) type=innodb;

You can alter existing tables to innodb by issuing the command:

alter table MyTable type=innodb;

Or you can use the GUI MySQLCC to change table types.

--
signature Daniel Kasak
IT Developer
NUS Consulting Group
Level 5, 77 Pacific Highway
North Sydney, NSW, Australia 2060
T: (+61) 2 9922-7676 / F: (+61) 2 9922 7989
email: [EMAIL PROTECTED]
website: http://www.nusconsulting.com.au
-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to