mirror of
https://github.com/querydsl/querydsl.git
synced 2026-06-13 21:01:01 +08:00
SQLTemplates now has a new field called defaultValues. The value of the
field:
CUBRID: DEFAULT VALUES
Postgresql DEFAULT VALUES // tested
MySQL: VALUES() // tested
H2: VALUES() // tested
HSQLDB: VALUES()
Oracle: VALUES()
SQLServer DEFAULT VALUES
SQLite: : DEFAULT VALUES
Derby: VALUES (DEFAULT) // only works if there is only one column in the
table.
Teradata: DEFAULT VALUES
92 lines
3.3 KiB
Java
92 lines
3.3 KiB
Java
/*
|
|
* Copyright 2012, Mysema Ltd
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
package com.mysema.query.sql;
|
|
|
|
import com.mysema.query.QueryMetadata;
|
|
import com.mysema.query.QueryModifiers;
|
|
import com.mysema.query.types.Ops;
|
|
|
|
/**
|
|
* CUBRIDTemplates is a SQL dialect for CUBRID
|
|
*
|
|
* @author tiwe
|
|
*
|
|
*/
|
|
public class CUBRIDTemplates extends SQLTemplates {
|
|
|
|
public static Builder builder() {
|
|
return new Builder() {
|
|
@Override
|
|
protected SQLTemplates build(char escape, boolean quote) {
|
|
return new CUBRIDTemplates(escape, quote);
|
|
}
|
|
};
|
|
}
|
|
|
|
private String limitTemplate = "\nlimit {0}";
|
|
|
|
private String offsetLimitTemplate = "\nlimit {0}, {1}";
|
|
|
|
public CUBRIDTemplates() {
|
|
this('\\', false);
|
|
}
|
|
|
|
public CUBRIDTemplates(boolean quote) {
|
|
this('\\',quote);
|
|
}
|
|
|
|
public CUBRIDTemplates(char escape, boolean quote) {
|
|
super("\"", escape, quote);
|
|
setDummyTable(null);
|
|
setParameterMetadataAvailable(false);
|
|
setNullsFirst(null);
|
|
setNullsLast(null);
|
|
setDefaultValues("\ndefault values");
|
|
|
|
add(Ops.DateTimeOps.DAY_OF_YEAR, "dayofyear({0})");
|
|
add(Ops.DateTimeOps.DAY_OF_WEEK, "dayofweek({0})");
|
|
add(Ops.DateTimeOps.YEAR_WEEK, "(year({0}) * 100 + week({0}))");
|
|
|
|
add(Ops.DateTimeOps.ADD_YEARS, "date_add({0}, interval {1s} year)");
|
|
add(Ops.DateTimeOps.ADD_MONTHS, "date_add({0}, interval {1s} month)");
|
|
add(Ops.DateTimeOps.ADD_WEEKS, "date_add({0}, interval {1s} week)");
|
|
add(Ops.DateTimeOps.ADD_DAYS, "date_add({0}, interval {1s} day)");
|
|
add(Ops.DateTimeOps.ADD_HOURS, "date_add({0}, interval {1s} hour)");
|
|
add(Ops.DateTimeOps.ADD_MINUTES, "date_add({0}, interval {1s} minute)");
|
|
add(Ops.DateTimeOps.ADD_SECONDS, "date_add({0}, interval {1s} second)");
|
|
|
|
add(Ops.MathOps.LN, "ln({0})");
|
|
add(Ops.MathOps.LOG, "(ln({0}) / ln({1}))");
|
|
add(Ops.MathOps.COSH, "(exp({0}) + exp({0} * -1)) / 2");
|
|
add(Ops.MathOps.COTH, "(exp({0} * 2) + 1) / (exp({0} * 2) - 1)");
|
|
add(Ops.MathOps.SINH, "(exp({0}) - exp({0} * -1)) / 2");
|
|
add(Ops.MathOps.TANH, "(exp({0} * 2) - 1) / (exp({0} * 2) + 1)");
|
|
}
|
|
|
|
@Override
|
|
protected void serializeModifiers(QueryMetadata metadata, SQLSerializer context) {
|
|
QueryModifiers mod = metadata.getModifiers();
|
|
if (mod.getLimit() != null) {
|
|
if (mod.getOffset() != null) {
|
|
context.handle(offsetLimitTemplate, mod.getOffset(), mod.getLimit());
|
|
} else {
|
|
context.handle(limitTemplate, mod.getLimit());
|
|
}
|
|
} else if (mod.getOffset() != null) {
|
|
context.handle(offsetLimitTemplate, mod.getOffset(), Integer.MAX_VALUE);
|
|
}
|
|
}
|
|
|
|
}
|