Re: one more issue with take_imp_data

2005-04-11 Thread Stas Bekman
Tim Bunce wrote: On Sun, Apr 10, 2005 at 03:08:04PM -0400, Stas Bekman wrote: Tim Bunce wrote: On Sat, Apr 09, 2005 at 01:08:40AM -0400, Stas Bekman wrote: Tim, I've a pretty well working prototype now. There is one problem though. Before take_imp_data can be called all $sth must be destroyed. for

Re: one more issue with take_imp_data

2005-04-10 Thread Tim Bunce
On Sun, Apr 10, 2005 at 03:08:04PM -0400, Stas Bekman wrote: > Tim Bunce wrote: > >On Sat, Apr 09, 2005 at 01:08:40AM -0400, Stas Bekman wrote: > > > >>Tim, > >> > >>I've a pretty well working prototype now. There is one problem though. > >> > >>Before take_imp_data can be called all $sth must be d

Re: one more issue with take_imp_data

2005-04-10 Thread Stas Bekman
Tim Bunce wrote: On Sat, Apr 09, 2005 at 01:08:40AM -0400, Stas Bekman wrote: Tim, I've a pretty well working prototype now. There is one problem though. Before take_imp_data can be called all $sth must be destroyed. for example the following code: my $dbh = DBI->connect('dbi:mysql:test', '',

Re: one more issue with take_imp_data

2005-04-10 Thread Tim Bunce
On Sat, Apr 09, 2005 at 01:08:40AM -0400, Stas Bekman wrote: > Tim, > > I've a pretty well working prototype now. There is one problem though. > > Before take_imp_data can be called all $sth must be destroyed. for example > the following code: > > my $dbh = DBI->connect('dbi:mysql:test', ''

one more issue with take_imp_data

2005-04-08 Thread Stas Bekman
Tim, I've a pretty well working prototype now. There is one problem though. Before take_imp_data can be called all $sth must be destroyed. for example the following code: my $dbh = DBI->connect('dbi:mysql:test', '', '', {}); my $sth0 = $dbh->prepare("show tables"); $sth0->execute();