Help for this page

Select Code to Download


  1. or download this
    SELECT * FROM
    (
    ...
        ) AS foo
        
    ) AS bar
    
  2. or download this
    SELECT * FROM
    (
    ...
        ORDER BY f1 DESC
    ) AS bar
    ORDER BY f1 ASC
    
  3. or download this
    sub query_database {
        my($self,$dbh,$table_name,$fields,$where,$order)=@_;
    ...
                                              , $offset
                                              );
    
  4. or download this
    my $dbh        = DBI->connect("dbi:ODBC:test", "Martin_Evans", "easyso
    +ft", {RaiseError=>1,PrintError=>0});
    my $table_name = "bench_char";
    ...
    my @order = qw/f1/;
    
    DBIx::LiveGrid->run( undef, $dbh, $table_name, \@fields, undef, \@orde
    +r );