create_temp_table | R Documentation |
A convenience function to match dbtools which creates a table in the user's temporary database.
Please now use dbExecute()
directly instead, e.g. with variables conn
, table_name
and sql
then run: dbExecute(conn, glue("CREATE TABLE __temp__.{table_name} as {sql}")
)
create_temp_table(sql, table_name, conn = NULL)
sql |
A sql command which generates a table to be created in the temporary location. |
table_name |
The name of the table to be created in the user's temporary database. |
conn |
(optional) A DBIConnection object, as returned by |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.