dbBind {DBI}R Documentation

Bind values to a parameterised/prepared statement.

Description

Bind values to a parameterised/prepared statement.

Usage

dbBind(res, params, ...)

Arguments

res

An object inheriting from DBIResult.

params

A list of bindings. Named values should be matched to named paramters (if supported by the DBI backend). Unnamed values will be matched by position. I don't recommend mixing named and unnamed values.

...

Other arguments passed on to methods.


[Package DBI version 0.4-1 Index]