JDBC escapes

The JDBC specification (like the ODBC specification) acknowledges the fact that some vendor specific SQL may be required for certain RDBMS features. To aid developers in writing portable JDBC applications across multiple database products, a special escape syntax is used to specify the generic commands the developer wants to be run. The JDBC driver translates these escape sequences into native syntax for its specific database. For more information consult the Java DB Technical Documentation.

The parsing of the sql statements for these escapes can be disabled using Statement.setEscapeProcessing(false) .

Connection.nativeSQL(String sql) provides another way to have escapes processed. It translates the given SQL to a SQL suitable for the PostgreSQL™ backend.

To use the JDBC escapes, you simply write your SQL replacing date/time literal values, outer join and functions by the JDBC escape syntax. For example :

ResultSet rs = st.executeQuery("SELECT {fn week({d '2005-01-24'})}");

is the portable version for

ResultSet rs = st.executeQuery("SELECT extract(week from DATE '2005-01-24')");

You can specify which escape character to use in strings comparison (with LIKE ) to protect wildcards characters ('%' and ‘_') by adding the following escape : {escape 'escape-character'} . The driver supports this only at the end of the comparison expression.

For example, you can compare string values using ‘|’ as escape character to protect ‘_’ :

rs = stmt.executeQuery("select str2 from comparisontest where str1 like '|_abcd' {escape '|'} ");

You can specify outer joins using the following syntax: {oj table (LEFT|RIGHT|FULL) OUTER JOIN (table | outer-join) ON search-condition}

For example :

ResultSet rs = stmt.executeQuery("select * from {oj a left outer join b on (a.i=b.i)} ");

The JDBC specification defines escapes for specifying date, time and timestamp values which are supported by the driver.

  • date : {d 'yyyy-mm-dd'} which is translated to DATE 'yyyy-mm-dd'
  • time : {t 'hh:mm:ss'} which is translated to TIME 'hh:mm:ss'
  • timestamp : {ts 'yyyy-mm-dd hh:mm:ss.f...'} which is translated to TIMESTAMP 'yyyy-mm-dd hh:mm:ss.f' The fractional seconds (.f…) portion of the TIMESTAMP can be omitted.

The JDBC specification defines functions with an escape call syntax : {fn function_name(arguments)} . The following tables show which functions are supported by the PostgreSQL™ driver. The driver supports the nesting and the mixing of escaped functions and escaped values. The appendix C of the JDBC specification describes the functions.

Some functions in the following tables are translated but reported as not supported because they are duplicating or changing their order of the arguments. While this is harmless for literal values or columns, it will cause problems when using prepared statements. For example " {fn right(?,?)} " will be translated to " substring(? from (length(?)+1-?)) “. As you can see the translated SQL requires more parameters than before the translation but the driver will not automatically handle this.

functionreported as supportedtranslationcomments
abs(arg1)yesabs(arg1)
acos(arg1)yesacos(arg1)
asin(arg1)yesasin(arg1)
atan(arg1)yesatan(arg1)
atan2(arg1, arg2)yesatan2(arg1, arg2)
ceiling(arg1)yesceil(arg1)
cos(arg1)yescos(arg1)
cot(arg1)yescot(arg1)
degrees(arg1)yesdegrees(arg1)
exp(arg1)yesexp(arg1)
floor(arg1)yesfloor(arg1)
log(arg1)yesln(arg1)
log10(arg1)yeslog(arg1)
mod(arg1, arg2)yesmod(arg1, arg2)
pi(arg1)yespi(arg1)
power(arg1, arg2)yespow(arg1, arg2)
radians(arg1)yesradians(arg1)
rand()yesrandom()
rand(arg1)yessetseed(arg1)*0+random()The seed is initialized with the given argument and a new random value is returned.
round(arg1, arg2)yesround(arg1, arg2)
sign(arg1)yessign(arg1)
sin(arg1)yessin(arg1)
sqrt(arg1)yessqrt(arg1)
tan(arg1)yestan(arg1)
truncate(arg1, arg2)yestrunc(arg1, arg2)
functionreported as supportedtranslationcomments
ascii(arg1)yesascii(arg1)
char(arg1)yeschr(arg1)
concat(arg1, arg2…)yes(arg1
only require the two arguments version, but supporting more arguments
was so easy…
insert(arg1, arg2, arg3, arg4)nooverlay(arg1 placing arg4 from arg2 for arg3)This function is not supported since it changes the order of the arguments which can be a problem (for prepared
statements by example).
lcase(arg1)yeslower(arg1)
left(arg1, arg2)yessubstring(arg1 for arg2)
length(arg1)yeslength(trim(trailing from arg1))
locate(arg1, arg2)noposition(arg1 in arg2)
locate(arg1, arg2, arg3)no(arg2*sign(position(arg1 in substring(arg2 from arg3)+position(arg1 in substring(arg2 from arg3))Not supported since the three arguments version duplicate and change the order of the arguments.
ltrim(arg1)yestrim(leading from arg1)
repeat(arg1, arg2)yesrepeat(arg1, arg2)
replace(arg1, arg2, arg3)yesreplace(arg1, arg2, arg3)Only reported as supported by 7.3 and above servers.
right(arg1, arg2)nosubstring(arg1 from (length(arg1)+1-arg2))Not supported since arg2 is duplicated.
rtrim(arg1)yestrim(trailing from arg1)
space(arg1)yesrepeat(’ ‘, arg1)
substring(arg1, arg2)yessubstr(arg1, arg2)
substring(arg1, arg2, arg3)yessubstr(arg1, arg2, arg3)
ucase(arg1)yesupper(arg1)
soundex(arg1)nosoundex(arg1)Not supported since it requires the fuzzystrmatch contrib module.
difference(arg1, arg2)nodifference(arg1, arg2)Not supported since it requires the fuzzystrmatch contrib module.
functionreported as supportedtranslationcomments
curdate()yescurrent_date
curtime()yescurrent_time
dayname(arg1)yesto_char(arg1, ‘Day’)
dayofmonth(arg1)yesextract(day from arg1)
dayofweek(arg1)yesextract(dow from arg1)+1We must add 1 to be in the expected 1-7 range.
dayofyear(arg1)yesextract(doy from arg1)
hour(arg1)yesextract(hour from arg1)
minute(arg1)yesextract(minute from arg1)
month(arg1)yesextract(month from arg1)
monthname(arg1)yesto_char(arg1, ‘Month’)
now()yesnow()
quarter(arg1)yesextract(quarter from arg1)
second(arg1)yesextract(second from arg1)
week(arg1)yesextract(week from arg1)
year(arg1)yesextract(year from arg1)
timestampadd(argIntervalType, argCount, argTimeStamp)yes('(interval according to argIntervalType and
argCount)'+argTimeStamp)an argIntervalType value of SQL_TSI_FRAC_SECOND
is not implemented since backend does not support it
timestampdiff(argIntervalType, argTimeStamp1, argTimeStamp2)notextract((interval according to argIntervalType) from argTimeStamp2-argTimeStamp1 )only an argIntervalType value of SQL_TSI_FRAC_SECOND, SQL_TSI_FRAC_MINUTE, SQL_TSI_FRAC_HOUR or SQL_TSI_FRAC_DAY is supported
functionreported as supportedtranslationcomments
database()yescurrent_database()Only reported as supported by 7.3 and above servers.
ifnull(arg1, arg2)yescoalesce(arg1, arg2)
user()yesuser