Help for this page

Select Code to Download


  1. or download this
        SELECT col1 FROM table WHERE condition;
        if (col1 exists) {
            UPDATE table SET col2 = <new value>
        }
    
  2. or download this
        PerlModule Apache::DBI
    
  3. or download this
        <Location />
            SetHandler perl-script
            PerlHandler Plack::Handler::Apache2
            PerlSetVar psgi_app /path/to/application.pl
        </Location>