Please turn on my innodb on the mySQL database account.

Status
Not open for further replies.

cda2007

New Member
Messages
1
Reaction score
0
Points
0
Please turn on my innodb on the mySQL database account. Thank you.
 

descalzo

Grim Squeaker
Community Support
Messages
9,373
Reaction score
326
Points
83
I just use PHPMyAdmin to add an InnoDB table to a test DB of mine.
 

masshuu

Head of the Geese
Community Support
Enemy of the State
Messages
2,293
Reaction score
50
Points
48
if your creating a table though phpmyadmin, you select it under the "Storage Engine"
if your using a mysql query to make the table, you use

Code:
CREATE TABLE  `SomeDatabase`.`SomeTable` (
`someFields` INT NOT NULL
) ENGINE = INNODB
 
Last edited:
Status
Not open for further replies.
Top