Help for this page

Select Code to Download


  1. or download this
    # statement is prepared in advance, and values are bound right after t
    +hat
    
    ...
    while (my $row = $sth->fetchrow_arrayref) {
        $tk_col->insert('end', $row);
    }
    
  2. or download this
    POE::Session->Create (
       inline_states => {
    ...
       args => [ $sth ],
    );
    POE::Kernel->run();