View source: R/all_db_wrapper_fns.R
dbAsDate | R Documentation |
Convert a date field to a timestamp with or without time zone.
dbAsDate(conn, name, date = "date", tz = NULL, display = TRUE, exec = TRUE)
conn |
A connection object. |
name |
A character string specifying a PostgreSQL table name. |
date |
A character string specifying the date field. |
tz |
A character string specifying the time zone, in
|
display |
Logical. Whether to display the query (defaults to
|
exec |
Logical. Whether to execute the query (defaults to
|
If exec = TRUE
, returns TRUE
if the
conversion was successful.
Mathieu Basille mathieu@basille.org
The PostgreSQL documentation: http://www.postgresql.org/docs/current/static/datatype-datetime.html
## Example uses a dummy connection from DBI package
conn <- DBI::ANSI()
dbAsDate(conn, name = c("schema", "table"), date = "date", tz = "GMT",
exec = FALSE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.