I want to display sql code of the executed statement like SHOW CREATE TABLE my_table, but it return 1 meaning the exution was successful, so how I can see the code like
CREATE TABLE `my_table` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`content` varchar(255) NOT NULL,
?