ident: Flag a character vector as SQL identifiers

View source: R/ident.R

identR Documentation

Flag a character vector as SQL identifiers

Description

ident() takes unquoted strings and flags them as identifiers. ident_q() assumes its input has already been quoted, and ensures it does not get quoted again. This is currently used only for schema.table.

Usage

ident(...)

is.ident(x)

Arguments

...

A character vector, or name-value pairs

x

An object

Examples

# SQL92 quotes strings with '
escape_ansi("x")

# And identifiers with "
ident("x")
escape_ansi(ident("x"))

# You can supply multiple inputs
ident(a = "x", b = "y")
ident_q(a = "x", b = "y")

dbplyr documentation built on Oct. 26, 2023, 9:06 a.m.