Help for this page

Select Code to Download


  1. or download this
    #!perl
    use warnings;
    ...
    }
    
    1;
    
  2. or download this
    #!/usr/bin/env perl
    use warnings;
    ...
        WHERE { print "Where: ",__PACKAGE__, "\n"; b LIKE $x };
    };
    WHERE {}; # dies b/c not in SQL { ... }
    
  3. or download this
    Exec SQL
    Exec WHERE
    Where: main
    Exec LIKE::b (LIKE %abc%)
    WHERE not in SQL block at ...
    
  4. or download this
    Exec SQL
    Exec WHERE
    Where: SQL_DSL
    Exec LIKE::b (LIKE %abc%)
    Can't call method "WHERE" without a package or object reference at ...
    
  5. or download this
    #!perl
    package SQL_DSL_Keyword;
    ...
    }
    
    1;
    
  6. or download this
    #!perl
    package SQL_DSL_Transform;
    ...
    }
    
    1;