- or download this
#!perl
use warnings;
...
}
1;
- or download this
#!/usr/bin/env perl
use warnings;
...
WHERE { print "Where: ",__PACKAGE__, "\n"; b LIKE $x };
};
WHERE {}; # dies b/c not in SQL { ... }
- or download this
Exec SQL
Exec WHERE
Where: main
Exec LIKE::b (LIKE %abc%)
WHERE not in SQL block at ...
- 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 ...
- or download this
#!perl
package SQL_DSL_Keyword;
...
}
1;
- or download this
#!perl
package SQL_DSL_Transform;
...
}
1;