Performing Validity Checking on Date or Time Subparts
Problem
A string passes a pattern test as a date or time, but you want to perform further checking to make sure that it’s legal.
Solution
Break up the value into subparts and perform the appropriate range checking on each part.
Discussion
Pattern matching may not be sufficient for checking dates or
times. For example, a value like 1947-15-19
might match a date pattern, but
it’s not actually legal as a date. If you want to perform more
rigorous value testing, combine pattern matching with range checking.
Break out the year, month, and day values, and then check that they’re
within the proper ranges. Years should be less than 9999 (MySQL
represents dates to an upper limit of 9999-12-31
), month values should be in the
range from 1 to 12, and days should be in the range from 1 to the
number of days in the month. That latter part is the trickiest: it’s
month-dependent, and for February it’s also year-dependent because it
changes for leap years.
Suppose that you’re checking input dates in ISO format. In Using Patterns to Match Dates or Times, we used an is_iso_date()
function from the
Cookbook_Utils.pm library file to
perform a pattern match on a date string and break it into component
values:
my $ref = is_iso_date ($val); if (defined ($ref)) { # $val matched ISO format pattern; # check its subparts using $ref->[0] through $ref->[2] } else { # $val didn't match ISO format pattern }
is_iso_date()
returns
undef
if the value doesn’t satisfy ...
Get MySQL Cookbook, 2nd Edition now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.