koti688 has asked for the wisdom of the Perl Monks concerning the following question:
But not able to do Insert , delet and update operations and made all the functions into a package.coul guyz help me in doing these things. I am a beginner to perl. expecting quick replys from u. You can mail me ur proceeding to this id koti688@gmail.com or koteswara.devarasetty@sierraatlantic.com Thanks in Advance Koti.#!/usr/bin/perl -w use DBI; $dbh = DBI->connect('dbi:mysql:perltest','root','sierra') or die "Connection Error: $DBI::errstr\n"; $sql = "select * from samples"; $sth = $dbh->prepare($sql); $sth->execute or die "SQL Error: $DBI::errstr\n"; while (@row = $sth->fetchrow_array) { print "@row\n"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Need Sample Code for inserting ,deleting, selecting Data into MySql Db
by lamp (Chaplain) on Oct 29, 2008 at 09:16 UTC | |
|
Re: Need Sample Code for inserting ,deleting, selecting Data into MySql Db
by moritz (Cardinal) on Oct 29, 2008 at 09:17 UTC |