Help for this page

Select Code to Download


  1. or download this
    $db=DDSMySQL->connect(...);
    $object=$db->{table_foo}->{id}=$bar;
    $object->{some_other_key}=$blah;
    ...
    $qux=$object->{qux};
    
    ...etc...
    
  2. or download this
    $object=$db->table_foo->id($bar);
    $object->some_other_key($blah);
    ...
    $qux=$object->qux;
    
    ...etc...