Help for this page

Select Code to Download


  1. or download this
    sub
    Write_Bar
    {
    $dbh->do("INSERT INTO bar (Foo,Fob,Fib) VALUES ('baz','biz','boz')");
    }
    
  2. or download this
    sub
    Write_Bar
    ...
    my $dbh = shift;
    $dbh->do("INSERT INTO bar (Foo,Fob,Fib) VALUES ('baz','biz','boz')");
    }