Help for this page

Select Code to Download


  1. or download this
    my $sth = $dbh->prepare_cached(
      "SELECT * FROM ReleaseDates"
    );
    
  2. or download this
    my $sth = $dbh->prepare_cached(
      "SELECT convert( char(8), dtXXX, 101 ) FROM ReleaseDates" );
    
  3. or download this
      my $sth =$connection->prepare(
        "SELECT Release, dtTargetFeatureFreeze, 
    ...
         dtTargetRTM, TwikiURL, ReleaseNum, Display
         FROM ReleaseDates WHERE (Display = 1)"
      );
    
  4. or download this
     my $sth =$connection->prepare(
        "SELECT Release, 
    ...
         TwikiURL, ReleaseNum, Display
         FROM ReleaseDates WHERE (Display = 1)"
      );