returnnewError(translate.text("SqlBuilder: invalid value-type for pFieldOrCond. It can be a fully qualified SqlBuilder (e.g. select, from, ... have to be set) or an jdito-prepared-statement array"));
}
SqlBuilder.ERROR_VALUE_IS_MANDATORY=function()
SqlBuilder._ERROR_VALUE_IS_MANDATORY=function()
{
returnnewError(translate.text("SqlBuilder: pValue (or pFieldOrCond if only one param) is not allowed to be null, undefined or []. (use *IfSet functions if you need optional conditions which are just ignored if value is null or undefined)"));
returnnewError(translate.text("SqlBuilder: pValue has to be a jdito variable which returns something different than null. (use *IfSet functions if you need optional conditions which are just ignored if value is null or undefined)"));
returnnewError(translate.text("SqlBuilder: If pFieldOrCond is a SqlBuilder & pValue is provided, pFieldOrCond has to be a full SqlBuilder which will be used as subselect"));
returnnewError(translate.text("SqlBuilder: If pFieldOrCond is a SqlBuilder & pValue is provided, you have to provide also pFieldType, as the type cannot be calculated from pFieldOrCond because it is a subselect"));
returnnewError(translate.text("SqlBuilder: The '#' in pCondition has to occur before the '?' and '?' has to occur 1 time, '#' has to occur 1 or 0 times."));
}
SqlBuilder.ERROR_NOT_BOOLEAN=function ()
SqlBuilder._ERROR_NOT_BOOLEAN=function ()
{
returnnewError(translate.text("pExecuteOnlyIfConditionExists has to be of type boolean. This parameter controls what happens if the condition is empty (select / delete all or nothing)"));
if (pCondition&&!SqlUtils.checkConditionFormat(pCondition))
throwSqlBuilder.ERROR_CONDITION_WRONG_FORMAT();
throwSqlBuilder._ERROR_CONDITION_WRONG_FORMAT();
if (pMandatory===undefined)
pMandatory=true;
if (!this._where._whereWasCalled)
throwSqlBuilder.ERROR_WHERE_NOT_FIRST();
throwSqlBuilder._ERROR_WHERE_NOT_FIRST();
if (!pMandatory&&pFieldOrCond===undefined&&pValue===undefined&&pCondition===undefined&&pFieldType===undefined)
returnthis;
if (pFieldOrCond===undefined&&pValue===undefined&&pCondition===undefined&&pFieldType===undefined)
throwSqlBuilder.ERROR_NO_PARAMETER_PROVIDED();
throwSqlBuilder._ERROR_NO_PARAMETER_PROVIDED();
// Special case: if only pFieldOrCond is set and we can identify it as a valid field-string (e.g. "Table.Field") we assume that it is not just a condition string.
// --> we can check pValue for undefined and also allow simple string-conditions
* Constant-like function which provides a value for pCondition if you need a "# = ?" statement.
* This is the default for the pCondition parameter, so it can be omitted.
*
* @return {String}
*
* @example
* var cond = newWhere("PERSON.FIRSTNAME", "Fritz", SqlBuilder.EQUAL())
*/
SqlBuilder.EQUAL=function ()
{
return"# = ?";
}
/**
* Constant-like function which provides a value for pCondition if you need a "# <> ?" statement.
*
* @return {String}
*
* @example
* var cond = newWhere("PERSON.FIRSTNAME", "Fritz", SqlBuilder.NOT_EQUALS())
*/
SqlBuilder.NOT_EQUAL=function ()
{
return"# <> ?";
}
/**
* Constant-like function which provides a value for pCondition if you need a "# like ?" statement.
*
* @return {String}
*
* @example
* var cond = newWhere("PERSON.FIRSTNAME", "F%", SqlBuilder.LIKE())
*/
SqlBuilder.LIKE=function ()
{
return"# like ?";
}
/**
* Constant-like function which provides a value for pCondition if you need a "# > ?" statement.
*
* @return {String}
*/
SqlBuilder.GREATER_THAN=function ()
{
return"# > ?";
}
/**
* Constant-like function which provides a value for pCondition if you need a "# < ?" statement.
*
* @return {String}
*/
SqlBuilder.LESS_THAN=function ()
{
return"# < ?";
}
/**
* Constant-like function which provides a value for pCondition if you need a "# >= ?" statement.
*
* @return {String}
*/
SqlBuilder.GREATER_OR_EQUAL=function ()
{
return"# >= ?";
}
/**
* Constant-like function which provides a value for pCondition if you need a "# <= ?" statement.
*
* @return {String}
*/
SqlBuilder.LESS_OR_EQUAL=function ()
{
return"# <= ?";
}
/**
* Throws an error if pValue is null, undefined or a SqlBuilder without condition (or if pValue is a $-variable: error if the result of it is null or undefined)<br/>
* Also throws an error if pFieldOrCond is the only parameter and it is null<br/>