Seite 2 von 2

Re: Berechnungen mit Daten aus duckdb

Verfasst: Sa Nov 11, 2023 7:30 pm
von Aaron
Danke nochmals.

Re: Berechnungen mit Daten aus duckdb

Verfasst: Sa Nov 11, 2023 7:39 pm
von Athomas
Die Hilfe zu "dbWriteTable" ist doch recht eindeutig - Du weißt, wie man die in RStudio benutzt?

Code: Alles auswählen

Usage
dbWriteTable(conn, name, value, ...)

Arguments
- conn	
  A DBIConnection object, as returned by dbConnect().

- name	
  The table name, passed on to dbQuoteIdentifier(). Options are:
  - a character string with the unquoted DBMS table name, e.g. "table_name",
  - a call to Id() with components to the fully qualified table name, e.g. Id(schema = "my_schema", table = "table_name")
  - a call to SQL() with the quoted and fully qualified table name given verbatim, e.g. SQL('"my_schema"."table_name"')

- value	
  a data.frame (or coercible to data.frame).

...	
Other parameters passed on to methods.