Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re^3: Using DBI::Sybase having problem with Date format

by derby (Abbot)
on May 10, 2007 at 17:54 UTC ( [id://614719]=note: print w/replies, xml ) Need Help??

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)"
      );
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://614719]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (5)
As of 2024-04-19 16:21 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found