| DateTime-Format-MSSQL documentation | view source | Contained in the DateTime-Format-MSSQL distribution. |
DateTime::Format::MSSQL - parse and format MSSQL DATETIME's
version 0.092950
use DateTime::Format::MSSQL;
my $dt = DateTime::Format::MSSQL->parse_datetime(
'2004-08-21 14:36:48.080'
);
DateTime::Format::MSSQL->format_datetime($dt); # '2004-08-21 14:36:48.080'
This is just a basic module to help parse dates formatted from SQL Server.
Parse a string returned by SQL Server for a DATETIME column in the default
format.
Format a DateTime object into a string in the SQL Server expected format.
Arthur Axel "fREW" Schmidt <frioux+cpan@gmail.com>
This software is copyright (c) 2009 by Arthur Axel "fREW" Schmidt.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
| DateTime-Format-MSSQL documentation | view source | Contained in the DateTime-Format-MSSQL distribution. |