Help for this page

Select Code to Download


  1. or download this
    package Table;
    use Moose::Role;
    ...
    
        # loop thru $sth and add Moose attributes
    }
    
  2. or download this
    package MyTable;
    use Moose;
    with 'Table';
    
    parse_table( 'my_table' );