Help for this page

Select Code to Download


  1. or download this
    # warning, not what you really need
    my @adult = Person->search(age => 18);
    
  2. or download this
    @adult = Person->retrieve_from_sql('WHERE age >= ?', 18);