Help for this page

Select Code to Download


  1. or download this
    # stackable method calls:
    print DBIx::XHTML_Table
    ...
       ->exec_query('select foo,baz from bar')
       ->output()
    ;
    
  2. or download this
    my $table = DBIx::XHTML_Table->new($data_source,$usr,$pass);
    $table->exec_query('select foo,baz from bar');
    print $table->output();