Remove dependency of "db-doc" on "srfi-doc".
This commit is contained in:
parent
3d0e2ad5cd
commit
592ea25ee2
|
@ -6,8 +6,7 @@
|
||||||
racket/runtime-path
|
racket/runtime-path
|
||||||
"config.rkt"
|
"config.rkt"
|
||||||
"tabbing.rkt"
|
"tabbing.rkt"
|
||||||
(for-label (prefix-in srfi: srfi/19)
|
(for-label db db/util/geometry db/util/postgresql
|
||||||
db db/util/geometry db/util/postgresql
|
|
||||||
json))
|
json))
|
||||||
|
|
||||||
@(define-runtime-path log-file "log-for-sql-types.rktd")
|
@(define-runtime-path log-file "log-for-sql-types.rktd")
|
||||||
|
@ -414,15 +413,15 @@ values.
|
||||||
Represents SQL times and timestamps.
|
Represents SQL times and timestamps.
|
||||||
|
|
||||||
The @racket[tz] field indicates the time zone offset as the number
|
The @racket[tz] field indicates the time zone offset as the number
|
||||||
of seconds east of GMT (as in SRFI 19). If @racket[tz] is
|
of seconds east of GMT (as in @racketmodname[srfi/19
|
||||||
@racket[#f], the time or timestamp does not carry time zone
|
#:indirect]). If @racket[tz] is @racket[#f], the time or timestamp
|
||||||
information.
|
does not carry time zone information.
|
||||||
|
|
||||||
The @racket[sql-time] and @racket[sql-timestamp] structures store
|
The @racket[sql-time] and @racket[sql-timestamp] structures store
|
||||||
fractional seconds to nanosecond precision for compatibility with
|
fractional seconds to nanosecond precision for compatibility with
|
||||||
SRFI 19. Note, however, that database systems generally do not
|
@racketmodname[srfi/19 #:indirect]. Note, however, that database
|
||||||
support nanosecond precision; PostgreSQL, for example, only supports
|
systems generally do not support nanosecond precision; PostgreSQL,
|
||||||
microsecond precision.
|
for example, only supports microsecond precision.
|
||||||
|
|
||||||
@examples[#:eval the-eval
|
@examples[#:eval the-eval
|
||||||
(query-value pgc "select date '25-dec-1980'")
|
(query-value pgc "select date '25-dec-1980'")
|
||||||
|
|
|
@ -36,7 +36,7 @@ modules below, not by @racketmodname[db] or @racketmodname[db/base].
|
||||||
sql-timestamp?]]]{
|
sql-timestamp?]]]{
|
||||||
|
|
||||||
Converts between this library's date and time values and SRFI 19's
|
Converts between this library's date and time values and SRFI 19's
|
||||||
date values (see @racketmodname[srfi/19]). SRFI dates store more
|
date values (see @racketmodname[srfi/19 #:indirect]). SRFI dates store more
|
||||||
information than SQL dates and times, so converting a SQL time to a
|
information than SQL dates and times, so converting a SQL time to a
|
||||||
SRFI date, for example, puts zeroes in the year, month, and day
|
SRFI date, for example, puts zeroes in the year, month, and day
|
||||||
fields.
|
fields.
|
||||||
|
|
|
@ -6,7 +6,6 @@
|
||||||
|
|
||||||
(define build-deps '("data-doc"
|
(define build-deps '("data-doc"
|
||||||
"srfi-lite-lib"
|
"srfi-lite-lib"
|
||||||
"srfi-doc"
|
|
||||||
"web-server-doc"
|
"web-server-doc"
|
||||||
"base"
|
"base"
|
||||||
"scribble-lib"
|
"scribble-lib"
|
||||||
|
|
Loading…
Reference in New Issue
Block a user