Home | History | Annotate | Download | only in dist

Lines Matching full:day

1318 ** method returns a Julian Day Number for the current date and time.
2243 ** char *zText = "It's a happy day!";
2258 ** INSERT INTO table1 VALUES('It''s a happy day!')
2265 ** INSERT INTO table1 VALUES('It's a happy day!');
10959 ** SQLite processes all times and dates as Julian Day numbers. The
10969 ** be represented, even though julian day numbers allow a much wider
11012 sqlite3_int64 iJD; /* The julian day number times 86400000 */
11013 int Y, M, D; /* Year, month, and day */
11167 ** Convert from YYYY-MM-DD HH:MM:SS to julian day. We always assume
11262 ** Attempt to parse the given string into a Julian Day Number. Return
11301 ** Compute the Year, Month, and Day from the julian day number.
11327 ** Compute the Hour, Minute, and Seconds from the julian day number.
11445 ** start of day
11485 ** seconds since 1970. Convert to a real julian day number.
11532 ** Move the date backwards to the beginning of the current day,
11551 }else if( strcmp(z,"day")==0 ){
11579 sqlite3_int64 day;
11585 day = tx.iJD/86400000;
11586 tx.iJD -= day*86400000;
11602 if( n==3 && strcmp(z,"day")==0 ){
11693 ** Return the julian day number of the date specified in the arguments
11770 ** %d day of month
11773 ** %j day of year 000-366
11774 ** %J ** Julian day number
11779 ** %w day of week 0-6 sunday==0
11866 int nDay; /* Number of days since 1st day of year */
11990 ** already lost fractional day precision.
21209 ** current time and date as a Julian Day number into *prNow and
21216 day, month, year;
21222 day = (USHORT)dt.day;
21229 now = day - 32076 +
25814 ** current time and date as a Julian Day number into *prNow and
29118 ** current time and date as a Julian Day number into *prNow and
29129 /* Number of 100-nanosecond intervals in a single day */
29133 /* Number of 100-nanosecond intervals in half of a day */
29156 timeF = timeF + ntuPerHalfDay; /* add half a day (from 2305813.5) */
29157 timeW = timeW + (timeF/ntuPerDay); /* add whole day if half day made one */