> Hello Guru, > > I am web programmer using PERL, MySQL. > I need help from you, could you please clarify my doubt? > > 1. How many methods or functions in PERL-DBI/DBD module > will actually will get communicates with MySQL? > > I know one that's $sth->fecth() or $sth->fetchArrayref() after > $sth->execute(); where $sth = $dbi->open("dbi:mysql:...");
$dbh = DBI->connect("DBI:mysql:..........."); $dbh->selectrow_array("SELECT ........"); $dbh->selectall_arrayref("SELECT ......."); $dbh->do("UPDATE / DELETE / INSERT .......");