execute | R Documentation |
Function execute(sql, dbname, schemaname). Executes any SQL statement in the connected Nuvolos schema. On Nuvolos the database and schema are by default the ones the user is working in, from local machine they need to be specified.
execute(sql, dbname = NULL, schemaname = NULL)
sql |
SQL statement to be executed. Note that quoting the tables is needed only if the table name is case sensitive (it contains both upper and lowercase letters or special chars). |
dbname |
The name of the database from/in which the statement will be executed. |
schemaname |
The name of the schema from/in which the statement will be executed. |
Returns the result of python's execute method.
execute("DROP TABLE table")
execute("DROP TABLE table", dbname = "space_1", schemaname = "test_schema")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.