Does anyone known how to create a table or perform any other DDL commands with Net::MySQL?
I can use it to insert, update, and delete:
$mysql->query(q{delete from emp where empno=5});
But table creation doesn't work:
$mysql->query(q{create table emp (empno int)});
Any ideas?
Thanks,
Chad