Re: Resetting of the dataset

2004-12-16 Thread Lawrence Statton
> Hi! > > Yes, you are near of the truth :). But if I use some complicated joining > query to few large tables I think this is not too comfortable for the > server. > > Well, this is the line between mere programming and software engineering. The simplest technique is the most straightforwar

Re: Resetting of the dataset

2004-12-16 Thread Nicolay A. Vasiliev
fetchrow_array(). I think it's just a matter of running the execute statement again to reset it... -Original Message- From: Nicolay Vasiliev [mailto:[EMAIL PROTECTED] Sent: Thursday, December 16, 2004 10:14 AM To: [EMAIL PROTECTED] Subject: Resetting of the dataset Hello there! I have

RE: Resetting of the dataset

2004-12-16 Thread brian . barto
ECTED] Sent: Thursday, December 16, 2004 10:14 AM To: [EMAIL PROTECTED] Subject: Resetting of the dataset Hello there! I have some dataset got by the executing of some query. For example: my $sth = $dbh->prepare('select * from sometable'); $sth->execute(); Going through

RE: Resetting of the dataset

2004-12-16 Thread brian . barto
lay Vasiliev [mailto:[EMAIL PROTECTED] Sent: Thursday, December 16, 2004 10:14 AM To: [EMAIL PROTECTED] Subject: Resetting of the dataset Hello there! I have some dataset got by the executing of some query. For example: my $sth = $dbh->prepare('select * from sometable'); $sth->ex

Resetting of the dataset

2004-12-16 Thread Nicolay Vasiliev
Hello there! I have some dataset got by the executing of some query. For example: my $sth = $dbh->prepare('select * from sometable'); $sth->execute(); Going through this dataset by $sth->fetchrow_array() I need to go back inside this proccess. Sorry, but I have no idea how can I do this. How can