dbUnQuoteIdentifier {odbc}R Documentation

Un-Quote identifiers

Description

Call this method to generate a string that is unquoted. This is the inverse of DBI::dbQuoteIdentifier.

Usage

dbUnQuoteIdentifier(conn, x, ...)

## S4 method for signature 'OdbcConnection,SQL'
dbUnQuoteIdentifier(conn, x)

## S4 method for signature 'OdbcConnection,character'
dbUnQuoteIdentifier(conn, x)

Arguments

conn

A subclass of DBIConnection, representing an active connection to an DBMS.

x

A character vector to un-quote.

...

Other arguments passed on to methods.


[Package odbc version 1.1.2 Index]