Help for this page

Select Code to Download


  1. or download this
         . . .
        #desired format: day.month.year Hour:Minutes:Seconds
        $dbh->{ib_timestampformat} = '%d.%m.%Y %H:%M:%S';
        $sth = $dbh->prepare($query);
         . . .
    
  2. or download this
         . . .
        $attr = { ib_timestampformat => '%d.%m.%Y %H:%M:%S' };
        $sth = $dbh->prepare($query, $attr);
         . . .