in reply to Re^5: MySQL Table adding with Perl
in thread MySQL Table adding with Perl

Your code cannot run at all:

$maketable = ("CREATE TABLE $newuser (A,B,C,D,E)");

This is not valid SQL (except maybe in SQLite). But that doesn't matter because you never run that statement.

$sth = execute();

This should never work. You need to call the ->execute() method on your statement handle. Unless you also have defined (but not shown to us) a subroutine with the name execute.

Replies are listed 'Best First'.
Re^7: MySQL Table adding with Perl
by Anonymous Monk on Mar 06, 2013 at 21:27 UTC

    After the change it is responding with errors. Sorry, beginner Perl programmer mistake. Thanks for the answer!