prestodb / RPresto

DBI-based adapter for Presto for the statistical programming language R.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Missing `db*()` implementations

jarodmeng opened this issue · comments

The following DBI db() implementations are currently missing from RPresto:

  • dbGetRowsAffected()
  • dbExecute()
  • dbCreateTable()
  • dbAppendTable()
  • dbWriteTable()
  • dbRemoveTable()
  • dbBind()

#157 implemented the following:

  • dbGetRowsAffected() and get dbExecute() for free
  • dbCreateTable()
  • dbRemoveTable()

The remaining are currently difficult to implement given how the code is written:

  • dbBind()
  • dbAppendTable()
  • dbWriteTable()

#161 implements a simple dbWriteTable().

The remaining db*() methods yet to be implemented:

  • dbBind()
  • dbAppendTable()

#211 added dbAppendTable() support.

Closing this issue for now as we're not adding dbBind() implementation for now.