Brian Bratcher wrote:
> I am trying to setup a cutom perl script to access Mysql databases
> through HTTP.
> So far I can connect and show all information.
> this is the code I used to showall
>
> $sth=$dbh=DBI->connect("DBI:mysql:pizza","root","");
> $sth->prepare("select * from Customer");
> $
Hello to all,
I am trying to setup a cutom perl script to access Mysql databases
through HTTP.
So far I can connect and show all information.
this is the code I used to showall
$sth=$dbh=DBI->connect("DBI:mysql:pizza","root","");
$sth->prepare("select * from Customer");
$sth->execute;
while(($ph