Help for this page

Select Code to Download


  1. or download this
    use Customer;
    
    my @customer = Customer->retrieve_all();
    
  2. or download this
    my $customer = $dbh->selectall_arrayref(
        "SELECT customer_id, username FROM customer",
        { Slice => {} }
    );