We have a database full of MyISAM tables. The thing is that we need transactions on just 1 table, called payments
My question is, will that work? I mean by changing the engine of that table to InnoDB
and using transactions on php, will that do the work? or do i have to mess around and do more than just that? Will that affect my db in anyway? The table is isolated, it doesn't have foreign keys since MyISAM
doesn't support them.
Ty in advance.