* With this object you do not have to check if the string is empty or not;
* you don't need to append a "1=1" condition or similar;
* this objects gains most benefit if you have a lot of conditions that are added (or not) depending on tons of JDito-conditions
*
* You can also use SqlCondition.begin(alias) for simpler object creation without new and without the need for an extra variable to save the object.
*
* @class
* @param {String} [alias=the current alias] the database alias where the condition shall be executed later (important for column types of preparedStatements)
* @example //TODO: add missing example
...
...
@@ -21,8 +24,38 @@ function SqlCondition(alias) {
this.preparedValues=null;
this._init();//the properties are initalized in an extra function because init is nearly the same as resetting (clearing) the SqlConditions
this.alias=alias;
this.cachedTypes={};
this.lastWasOr=false;
this._cachedTypes={};
this._lastWasOr=false;
}
/**
* Alternative possibility to crate a new condition.
* With this you don't need new SqlCondition and you can use the object directly after it's creation
* --> cleaner code
*
* It is very usefull for the orSqlCondition() and andSqlCondition() because now you can create a new condition inline.
* You can also use it for simple selects without the need to save the conditionObject in an extra variable.
* See Examples!
*
* @param {String} [alias=the current alias] the database alias where the condition shall be executed later (important for column types of preparedStatements)
* @return {Object} the new SqlCondition-object
*
* @example
* vars mySelect = SqlCondition.begin(alias)
* .and("MYID = '123'")
* .and(SqlCondition.begin()
* .or("NAME = 'Max'")
* .or("NAME = 'Bob'")
* )
* .buildSelect("select * from MYTABLE");
*
* // Or use it for simple selects:
* var sum = db.cell(SqlCondition.begin()
* .andPrepared("STOCK.PRODUCT_ID", pid)
* .buildSelect("select sum(QUANTITY * IN_OUT) from STOCK"));