Simple templating

  [DEFAULT] 
  find_author=\ 
      select isbn,title,author from books where author = :author 
  • ':author' allows for variable substitution
  • Can define own delimters for substitution variables

  # :author 
  $q->delimiters( qr{ :(\w+) }x );