Skip to main content

Quote Literal

Definition

The quoteLiteral method allows you to add the QUOTE_LITERAL function to the query. The QUOTE_LITERAL function return the given string suitably quoted to be used as a string literal in an SQL statement string.

There are 2 ways to call this method:

1. Calling from a KColumn or a KTableColumn

The only one method available to use this functionality calling from a KColumn or a KTableColumn is:

  • quoteLiteral(): It does not receive any parameters. The KColumn or KTableColumn that invokes the method will be the one supplied to the QUOTE_LITERAL function.

Example

Java code:

k
.select(
APP_USER.EMAIL.quoteLiteral()
)
.from(APP_USER)
.multiple();

SQL generated:

SELECT
QUOTE_LITERAL(au.email)
FROM app_user au

Parameters:

  • None

2. Calling from the KFunction class

The only one method available to use this functionality calling from the KFunction class are:

  • quoteLiteral(KColumn kColumn): Receives a KColumn or a KTableColumn which will be supplied to the QUOTE_LITERAL function.

To use this way, you need to import the static functions as follows:

import static com.myzlab.k.KFunction.*;

Example

Java code:

k
.select(
quoteLiteral(APP_USER.EMAIL)
)
.from(APP_USER)
.multiple();

SQL generated:

SELECT
QUOTE_LITERAL(au.email)
FROM app_user au

Parameters:

  • None