Help for this page

Select Code to Download


  1. or download this
    while( @info = $sth->fetchrow_array ) {
        $f_name = $info[0];
    ...
        # do what is necessary with these variables.
    
    }
    
  2. or download this
    my @objects;
    while ( @info = $sth->fetchrow_array ) {
    ...
    for ( @objects ) {
        # do something with the object
    }
    
  3. or download this
    @objects = Object::populate( "SELECT fname, lname, ... FROM object WHE
    +RE title='programmer'" )
    
  4. or download this
    @objects = Object::populate( title => "programmer" );