1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596
|
/*-------------------------------------------------------------------------
*
* Copyright (c) 2004-2008, PostgreSQL Global Development Group
*
* IDENTIFICATION
* $PostgreSQL: pgjdbc/org/postgresql/jdbc2/EscapedFunctions.java,v 1.12 2008/11/16 12:14:06 jurka Exp $
*
*-------------------------------------------------------------------------
*/
package org.postgresql.jdbc2;
import java.lang.reflect.Method;
import java.sql.SQLException;
import java.util.HashMap;
import java.util.Locale;
import java.util.List;
import java.util.Map;
import org.postgresql.util.GT;
import org.postgresql.util.PSQLException;
import org.postgresql.util.PSQLState;
/**
* this class stores supported escaped function
* @author Xavier Poinsard
*/
public class EscapedFunctions {
// numeric functions names
public final static String ABS="abs";
public final static String ACOS="acos";
public final static String ASIN="asin";
public final static String ATAN="atan";
public final static String ATAN2="atan2";
public final static String CEILING="ceiling";
public final static String COS="cos";
public final static String COT="cot";
public final static String DEGREES="degrees";
public final static String EXP="exp";
public final static String FLOOR="floor";
public final static String LOG="log";
public final static String LOG10="log10";
public final static String MOD="mod";
public final static String PI="pi";
public final static String POWER="power";
public final static String RADIANS="radians";
public final static String ROUND="round";
public final static String SIGN="sign";
public final static String SIN="sin";
public final static String SQRT="sqrt";
public final static String TAN="tan";
public final static String TRUNCATE="truncate";
// string function names
public final static String ASCII="ascii";
public final static String CHAR="char";
public final static String CONCAT="concat";
public final static String INSERT="insert"; // change arguments order
public final static String LCASE="lcase";
public final static String LEFT="left";
public final static String LENGTH="length";
public final static String LOCATE="locate"; // the 3 args version duplicate args
public final static String LTRIM="ltrim";
public final static String REPEAT="repeat";
public final static String REPLACE="replace";
public final static String RIGHT="right"; // duplicate args
public final static String RTRIM="rtrim";
public final static String SPACE="space";
public final static String SUBSTRING="substring";
public final static String UCASE="ucase";
// soundex is implemented on the server side by
// the contrib/fuzzystrmatch module. We provide a translation
// for this in the driver, but since we don't want to bother with run
// time detection of this module's installation we don't report this
// method as supported in DatabaseMetaData.
// difference is currently unsupported entirely.
// date time function names
public final static String CURDATE="curdate";
public final static String CURTIME="curtime";
public final static String DAYNAME="dayname";
public final static String DAYOFMONTH="dayofmonth";
public final static String DAYOFWEEK="dayofweek";
public final static String DAYOFYEAR="dayofyear";
public final static String HOUR="hour";
public final static String MINUTE="minute";
public final static String MONTH="month";
public final static String MONTHNAME="monthname";
public final static String NOW="now";
public final static String QUARTER="quarter";
public final static String SECOND="second";
public final static String WEEK="week";
public final static String YEAR="year";
// for timestampadd and timestampdiff the fractional part of second is not supported
// by the backend
// timestampdiff is very partially supported
public final static String TIMESTAMPADD="timestampadd";
public final static String TIMESTAMPDIFF="timestampdiff";
// constants for timestampadd and timestampdiff
public final static String SQL_TSI_ROOT="SQL_TSI_";
public final static String SQL_TSI_DAY="DAY";
public final static String SQL_TSI_FRAC_SECOND="FRAC_SECOND";
public final static String SQL_TSI_HOUR="HOUR";
public final static String SQL_TSI_MINUTE="MINUTE";
public final static String SQL_TSI_MONTH="MONTH";
public final static String SQL_TSI_QUARTER="QUARTER";
public final static String SQL_TSI_SECOND="SECOND";
public final static String SQL_TSI_WEEK="WEEK";
public final static String SQL_TSI_YEAR="YEAR";
// system functions
public final static String DATABASE="database";
public final static String IFNULL="ifnull";
public final static String USER="user";
/** storage for functions implementations */
private static Map functionMap = null;
/**
* get Method object implementing the given function
* @param functionName name of the searched function
* @return a Method object or null if not found
*/
public static Method getFunction(String functionName){
if (functionMap==null){
Method[] arrayMeths = EscapedFunctions.class.getDeclaredMethods();
functionMap = new HashMap(arrayMeths.length*2);
for (int i=0;i<arrayMeths.length;i++){
Method meth = arrayMeths[i];
if (meth.getName().startsWith("sql"))
functionMap.put(meth.getName().toLowerCase(Locale.US),meth);
}
}
return (Method) functionMap.get("sql"+functionName.toLowerCase(Locale.US));
}
// ** numeric functions translations **
/** ceiling to ceil translation */
public static String sqlceiling(List parsedArgs) throws SQLException{
StringBuffer buf = new StringBuffer();
buf.append("ceil(");
if (parsedArgs.size()!=1){
throw new PSQLException(GT.tr("{0} function takes one and only one argument.","ceiling"),
PSQLState.SYNTAX_ERROR);
}
buf.append(parsedArgs.get(0));
return buf.append(')').toString();
}
/** log to ln translation */
public static String sqllog(List parsedArgs) throws SQLException{
StringBuffer buf = new StringBuffer();
buf.append("ln(");
if (parsedArgs.size()!=1){
throw new PSQLException(GT.tr("{0} function takes one and only one argument.","log"),
PSQLState.SYNTAX_ERROR);
}
buf.append(parsedArgs.get(0));
return buf.append(')').toString();
}
/** log10 to log translation */
public static String sqllog10(List parsedArgs) throws SQLException{
StringBuffer buf = new StringBuffer();
buf.append("log(");
if (parsedArgs.size()!=1){
throw new PSQLException(GT.tr("{0} function takes one and only one argument.","log10"),
PSQLState.SYNTAX_ERROR);
}
buf.append(parsedArgs.get(0));
return buf.append(')').toString();
}
/** power to pow translation */
public static String sqlpower(List parsedArgs) throws SQLException{
StringBuffer buf = new StringBuffer();
buf.append("pow(");
if (parsedArgs.size()!=2){
throw new PSQLException(GT.tr("{0} function takes two and only two arguments.","power"),
PSQLState.SYNTAX_ERROR);
}
buf.append(parsedArgs.get(0)).append(',').append(parsedArgs.get(1));
return buf.append(')').toString();
}
/** truncate to trunc translation */
public static String sqltruncate(List parsedArgs) throws SQLException{
StringBuffer buf = new StringBuffer();
buf.append("trunc(");
if (parsedArgs.size()!=2){
throw new PSQLException(GT.tr("{0} function takes two and only two arguments.","truncate"),
PSQLState.SYNTAX_ERROR);
}
buf.append(parsedArgs.get(0)).append(',').append(parsedArgs.get(1));
return buf.append(')').toString();
}
// ** string functions translations **
/** char to chr translation */
public static String sqlchar(List parsedArgs) throws SQLException{
StringBuffer buf = new StringBuffer();
buf.append("chr(");
if (parsedArgs.size()!=1){
throw new PSQLException(GT.tr("{0} function takes one and only one argument.","char"),
PSQLState.SYNTAX_ERROR);
}
buf.append(parsedArgs.get(0));
return buf.append(')').toString();
}
/** concat translation */
public static String sqlconcat(List parsedArgs){
StringBuffer buf = new StringBuffer();
buf.append('(');
for (int iArg = 0;iArg<parsedArgs.size();iArg++){
buf.append(parsedArgs.get(iArg));
if (iArg!=(parsedArgs.size()-1))
buf.append(" || ");
}
return buf.append(')').toString();
}
/** insert to overlay translation */
public static String sqlinsert(List parsedArgs) throws SQLException{
StringBuffer buf = new StringBuffer();
buf.append("overlay(");
if (parsedArgs.size()!=4){
throw new PSQLException(GT.tr("{0} function takes four and only four argument.","insert"),
PSQLState.SYNTAX_ERROR);
}
buf.append(parsedArgs.get(0)).append(" placing ").append(parsedArgs.get(3));
buf.append(" from ").append(parsedArgs.get(1)).append(" for ").append(parsedArgs.get(2));
return buf.append(')').toString();
}
/** lcase to lower translation */
public static String sqllcase(List parsedArgs) throws SQLException{
StringBuffer buf = new StringBuffer();
buf.append("lower(");
if (parsedArgs.size()!=1){
throw new PSQLException(GT.tr("{0} function takes one and only one argument.","lcase"),
PSQLState.SYNTAX_ERROR);
}
buf.append(parsedArgs.get(0));
return buf.append(')').toString();
}
/** left to substring translation */
public static String sqlleft(List parsedArgs) throws SQLException{
StringBuffer buf = new StringBuffer();
buf.append("substring(");
if (parsedArgs.size()!=2){
throw new PSQLException(GT.tr("{0} function takes two and only two arguments.","left"),
PSQLState.SYNTAX_ERROR);
}
buf.append(parsedArgs.get(0)).append(" for ").append(parsedArgs.get(1));
return buf.append(')').toString();
}
/** length translation */
public static String sqllength(List parsedArgs) throws SQLException{
StringBuffer buf = new StringBuffer();
buf.append("length(trim(trailing from ");
if (parsedArgs.size()!=1){
throw new PSQLException(GT.tr("{0} function takes one and only one argument.","length"),
PSQLState.SYNTAX_ERROR);
}
buf.append(parsedArgs.get(0));
return buf.append("))").toString();
}
/** locate translation */
public static String sqllocate(List parsedArgs) throws SQLException{
if (parsedArgs.size()==2){
return "position("+parsedArgs.get(0)+" in "+parsedArgs.get(1)+")";
}else if (parsedArgs.size()==3){
String tmp = "position("+parsedArgs.get(0)+" in substring("+parsedArgs.get(1)+" from "+parsedArgs.get(2)+"))";
return "("+parsedArgs.get(2)+"*sign("+tmp+")+"+tmp+")";
}else{
throw new PSQLException(GT.tr("{0} function takes two or three arguments.","locate"),
PSQLState.SYNTAX_ERROR);
}
}
/** ltrim translation */
public static String sqlltrim(List parsedArgs) throws SQLException{
StringBuffer buf = new StringBuffer();
buf.append("trim(leading from ");
if (parsedArgs.size()!=1){
throw new PSQLException(GT.tr("{0} function takes one and only one argument.","ltrim"),
PSQLState.SYNTAX_ERROR);
}
buf.append(parsedArgs.get(0));
return buf.append(')').toString();
}
/** right to substring translation */
public static String sqlright(List parsedArgs) throws SQLException{
StringBuffer buf = new StringBuffer();
buf.append("substring(");
if (parsedArgs.size()!=2){
throw new PSQLException(GT.tr("{0} function takes two and only two arguments.","right"),
PSQLState.SYNTAX_ERROR);
}
buf.append(parsedArgs.get(0)).append(" from (length(").append(parsedArgs.get(0)).append(")+1-").append(parsedArgs.get(1));
return buf.append("))").toString();
}
/** rtrim translation */
public static String sqlrtrim(List parsedArgs) throws SQLException{
StringBuffer buf = new StringBuffer();
buf.append("trim(trailing from ");
if (parsedArgs.size()!=1){
throw new PSQLException(GT.tr("{0} function takes one and only one argument.","rtrim"),
PSQLState.SYNTAX_ERROR);
}
buf.append(parsedArgs.get(0));
return buf.append(')').toString();
}
/** space translation */
public static String sqlspace(List parsedArgs) throws SQLException{
StringBuffer buf = new StringBuffer();
buf.append("repeat(' ',");
if (parsedArgs.size()!=1){
throw new PSQLException(GT.tr("{0} function takes one and only one argument.","space"),
PSQLState.SYNTAX_ERROR);
}
buf.append(parsedArgs.get(0));
return buf.append(')').toString();
}
/** substring to substr translation */
public static String sqlsubstring(List parsedArgs) throws SQLException{
if (parsedArgs.size()==2){
return "substr("+parsedArgs.get(0)+","+parsedArgs.get(1)+")";
}else if (parsedArgs.size()==3){
return "substr("+parsedArgs.get(0)+","+parsedArgs.get(1)+","+parsedArgs.get(2)+")";
}else{
throw new PSQLException(GT.tr("{0} function takes two or three arguments.","substring"),
PSQLState.SYNTAX_ERROR);
}
}
/** ucase to upper translation */
public static String sqlucase(List parsedArgs) throws SQLException{
StringBuffer buf = new StringBuffer();
buf.append("upper(");
if (parsedArgs.size()!=1){
throw new PSQLException(GT.tr("{0} function takes one and only one argument.","ucase"),
PSQLState.SYNTAX_ERROR);
}
buf.append(parsedArgs.get(0));
return buf.append(')').toString();
}
/** curdate to current_date translation */
public static String sqlcurdate(List parsedArgs) throws SQLException{
if (parsedArgs.size()!=0){
throw new PSQLException(GT.tr("{0} function doesn''t take any argument.","curdate"),
PSQLState.SYNTAX_ERROR);
}
return "current_date";
}
/** curtime to current_time translation */
public static String sqlcurtime(List parsedArgs) throws SQLException{
if (parsedArgs.size()!=0){
throw new PSQLException(GT.tr("{0} function doesn''t take any argument.","curtime"),
PSQLState.SYNTAX_ERROR);
}
return "current_time";
}
/** dayname translation */
public static String sqldayname(List parsedArgs) throws SQLException{
if (parsedArgs.size()!=1){
throw new PSQLException(GT.tr("{0} function takes one and only one argument.","dayname"),
PSQLState.SYNTAX_ERROR);
}
return "to_char("+parsedArgs.get(0)+",'Day')";
}
/** dayofmonth translation */
public static String sqldayofmonth(List parsedArgs) throws SQLException{
if (parsedArgs.size()!=1){
throw new PSQLException(GT.tr("{0} function takes one and only one argument.","dayofmonth"),
PSQLState.SYNTAX_ERROR);
}
return "extract(day from "+parsedArgs.get(0)+")";
}
/** dayofweek translation
* adding 1 to postgresql function since we expect values from 1 to 7 */
public static String sqldayofweek(List parsedArgs) throws SQLException{
if (parsedArgs.size()!=1){
throw new PSQLException(GT.tr("{0} function takes one and only one argument.","dayofweek"),
PSQLState.SYNTAX_ERROR);
}
return "extract(dow from "+parsedArgs.get(0)+")+1";
}
/** dayofyear translation */
public static String sqldayofyear(List parsedArgs) throws SQLException{
if (parsedArgs.size()!=1){
throw new PSQLException(GT.tr("{0} function takes one and only one argument.","dayofyear"),
PSQLState.SYNTAX_ERROR);
}
return "extract(doy from "+parsedArgs.get(0)+")";
}
/** hour translation */
public static String sqlhour(List parsedArgs) throws SQLException{
if (parsedArgs.size()!=1){
throw new PSQLException(GT.tr("{0} function takes one and only one argument.","hour"),
PSQLState.SYNTAX_ERROR);
}
return "extract(hour from "+parsedArgs.get(0)+")";
}
/** minute translation */
public static String sqlminute(List parsedArgs) throws SQLException{
if (parsedArgs.size()!=1){
throw new PSQLException(GT.tr("{0} function takes one and only one argument.","minute"),
PSQLState.SYNTAX_ERROR);
}
return "extract(minute from "+parsedArgs.get(0)+")";
}
/** month translation */
public static String sqlmonth(List parsedArgs) throws SQLException{
if (parsedArgs.size()!=1){
throw new PSQLException(GT.tr("{0} function takes one and only one argument.","month"),
PSQLState.SYNTAX_ERROR);
}
return "extract(month from "+parsedArgs.get(0)+")";
}
/** monthname translation */
public static String sqlmonthname(List parsedArgs) throws SQLException{
if (parsedArgs.size()!=1){
throw new PSQLException(GT.tr("{0} function takes one and only one argument.","monthname"),
PSQLState.SYNTAX_ERROR);
}
return "to_char("+parsedArgs.get(0)+",'Month')";
}
/** quarter translation */
public static String sqlquarter(List parsedArgs) throws SQLException{
if (parsedArgs.size()!=1){
throw new PSQLException(GT.tr("{0} function takes one and only one argument.","quarter"),
PSQLState.SYNTAX_ERROR);
}
return "extract(quarter from "+parsedArgs.get(0)+")";
}
/** second translation */
public static String sqlsecond(List parsedArgs) throws SQLException{
if (parsedArgs.size()!=1){
throw new PSQLException(GT.tr("{0} function takes one and only one argument.","second"),
PSQLState.SYNTAX_ERROR);
}
return "extract(second from "+parsedArgs.get(0)+")";
}
/** week translation */
public static String sqlweek(List parsedArgs) throws SQLException{
if (parsedArgs.size()!=1){
throw new PSQLException(GT.tr("{0} function takes one and only one argument.","week"),
PSQLState.SYNTAX_ERROR);
}
return "extract(week from "+parsedArgs.get(0)+")";
}
/** year translation */
public static String sqlyear(List parsedArgs) throws SQLException{
if (parsedArgs.size()!=1){
throw new PSQLException(GT.tr("{0} function takes one and only one argument.","year"),
PSQLState.SYNTAX_ERROR);
}
return "extract(year from "+parsedArgs.get(0)+")";
}
/** time stamp add */
public static String sqltimestampadd(List parsedArgs) throws SQLException{
if (parsedArgs.size()!=3){
throw new PSQLException(GT.tr("{0} function takes three and only three arguments.","timestampadd"),
PSQLState.SYNTAX_ERROR);
}
String interval = EscapedFunctions.constantToInterval(parsedArgs.get(0).toString(),parsedArgs.get(1).toString());
StringBuffer buf = new StringBuffer();
buf.append("(").append(interval).append("+");
buf.append(parsedArgs.get(2)).append(")");
return buf.toString();
}
private final static String constantToInterval(String type,String value)throws SQLException{
if (!type.startsWith(SQL_TSI_ROOT))
throw new PSQLException(GT.tr("Interval {0} not yet implemented",type),
PSQLState.SYNTAX_ERROR);
String shortType = type.substring(SQL_TSI_ROOT.length());
if (SQL_TSI_DAY.equalsIgnoreCase(shortType))
return "CAST(" + value + " || ' day' as interval)";
else if (SQL_TSI_SECOND.equalsIgnoreCase(shortType))
return "CAST(" + value + " || ' second' as interval)";
else if (SQL_TSI_HOUR.equalsIgnoreCase(shortType))
return "CAST(" + value + " || ' hour' as interval)";
else if (SQL_TSI_MINUTE.equalsIgnoreCase(shortType))
return "CAST(" + value + " || ' minute' as interval)";
else if (SQL_TSI_MONTH.equalsIgnoreCase(shortType))
return "CAST(" + value + " || ' month' as interval)";
else if (SQL_TSI_QUARTER.equalsIgnoreCase(shortType))
return "CAST((" + value + "::int * 3) || ' month' as interval)";
else if (SQL_TSI_WEEK.equalsIgnoreCase(shortType))
return "CAST(" + value + " || ' week' as interval)";
else if (SQL_TSI_YEAR.equalsIgnoreCase(shortType))
return "CAST(" + value + " || ' year' as interval)";
else if (SQL_TSI_FRAC_SECOND.equalsIgnoreCase(shortType))
throw new PSQLException(GT.tr("Interval {0} not yet implemented","SQL_TSI_FRAC_SECOND"),
PSQLState.SYNTAX_ERROR);
else throw new PSQLException(GT.tr("Interval {0} not yet implemented",type),
PSQLState.SYNTAX_ERROR);
}
/** time stamp diff */
public static String sqltimestampdiff(List parsedArgs) throws SQLException{
if (parsedArgs.size()!=3){
throw new PSQLException(GT.tr("{0} function takes three and only three arguments.","timestampdiff"),
PSQLState.SYNTAX_ERROR);
}
String datePart = EscapedFunctions.constantToDatePart(parsedArgs.get(0).toString());
StringBuffer buf = new StringBuffer();
buf.append("extract( ").append(datePart)
.append(" from (").append(parsedArgs.get(2)).append("-").append(parsedArgs.get(1)).append("))");
return buf.toString();
}
private final static String constantToDatePart(String type)throws SQLException{
if (!type.startsWith(SQL_TSI_ROOT))
throw new PSQLException(GT.tr("Interval {0} not yet implemented",type),
PSQLState.SYNTAX_ERROR);
String shortType = type.substring(SQL_TSI_ROOT.length());
if (SQL_TSI_DAY.equalsIgnoreCase(shortType))
return "day";
else if (SQL_TSI_SECOND.equalsIgnoreCase(shortType))
return "second";
else if (SQL_TSI_HOUR.equalsIgnoreCase(shortType))
return "hour";
else if (SQL_TSI_MINUTE.equalsIgnoreCase(shortType))
return "minute";
// See http://archives.postgresql.org/pgsql-jdbc/2006-03/msg00096.php
/*else if (SQL_TSI_MONTH.equalsIgnoreCase(shortType))
return "month";
else if (SQL_TSI_QUARTER.equalsIgnoreCase(shortType))
return "quarter";
else if (SQL_TSI_WEEK.equalsIgnoreCase(shortType))
return "week";
else if (SQL_TSI_YEAR.equalsIgnoreCase(shortType))
return "year";*/
else if (SQL_TSI_FRAC_SECOND.equalsIgnoreCase(shortType))
throw new PSQLException(GT.tr("Interval {0} not yet implemented","SQL_TSI_FRAC_SECOND"),
PSQLState.SYNTAX_ERROR);
else throw new PSQLException(GT.tr("Interval {0} not yet implemented",type),
PSQLState.SYNTAX_ERROR);
}
/** database translation */
public static String sqldatabase(List parsedArgs) throws SQLException{
if (parsedArgs.size()!=0){
throw new PSQLException(GT.tr("{0} function doesn''t take any argument.","database"),
PSQLState.SYNTAX_ERROR);
}
return "current_database()";
}
/** ifnull translation */
public static String sqlifnull(List parsedArgs) throws SQLException{
if (parsedArgs.size()!=2){
throw new PSQLException(GT.tr("{0} function takes two and only two arguments.","ifnull"),
PSQLState.SYNTAX_ERROR);
}
return "coalesce("+parsedArgs.get(0)+","+parsedArgs.get(1)+")";
}
/** user translation */
public static String sqluser(List parsedArgs) throws SQLException{
if (parsedArgs.size()!=0){
throw new PSQLException(GT.tr("{0} function doesn''t take any argument.","user"),
PSQLState.SYNTAX_ERROR);
}
return "user";
}
}
|