MySQL transaction support

vdvm

Verified User
Joined
Oct 5, 2005
Messages
39
KnowledgeTree needs transaction support from mysql.

Transaction support not available in database.

How can i activate it?

Thank you.
 
You need to be using InnoDB storage engine for that database in order to use transactions. The default is MyISAM and they don't support transactions. Then transactions are handled via MySQL syntax (START TRANSACTION, COMMIT, and ROLLBACK).
 
Back
Top