Help for this page

Select Code to Download


  1. or download this
    - if database = "lonprod" then
       call module App:London::Production::LogTable
    ...
      call module App::London::Test::LogTable
    - if database = "partest" then 
      call module App::Paris::Test::LogTable
    
  2. or download this
    if $database eq "lonprod" {
      App::London::Prod::LogTable->find_and_create(
    ...
    elsif $database eq "lontest" {
    ... #etc
    }