Viewing 2 posts - 1 through 2 (of 2 total)
Hello
I did it in my C++ applications in the following way:
* all records contains a Timestamp type column
* the timestamp is stored in a temporary location while the application reads...
January 12, 2005 at 1:16 am
#536944
A simple solution is the basic test for leap year:
Declare @nYear int
Declare @bLeapYear int
SET @nYear = Year( getdate())
SET @bLeapYear = 0
if ((( @nYear % 4) = 0) AND (((...
December 29, 2003 at 1:45 am
#487893