Re: Help with DBI.pm

2002-03-10 Thread fliptop
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"); > $

Help with DBI.pm

2002-03-09 Thread Brian Bratcher
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