Skip to content
Snippets Groups Projects
Commit 63540ce0 authored by Johannes Hörmann's avatar Johannes Hörmann Committed by Benjamin Ulrich
Browse files

Put new SqlBuilder into Sql_lib, add some compatibility-fixes for the old...

Put new SqlBuilder into Sql_lib, add some compatibility-fixes for the old usages from the sqlbuilder.
parent 287f3b29
No related branches found
No related tags found
No related merge requests found
......@@ -777,7 +777,7 @@ function newWhereIfSet(pFieldOrCond, pValue, pCondition, pFieldType, pAlias)
function SqlBuilder (pAlias)
{
if(!(this instanceof SqlBuilder))
throw SqlBuilder._ERROR_INSTANCIATE_WITH_NEW();
throw SqlBuilder.ERROR_INSTANCIATE_WITH_NEW();
this._select = null;
this._from = null;
this._tableName = null; //for update/delete
......@@ -3302,7 +3302,6 @@ SqlUtils._parseFieldQualifier = function(pFieldOrTableName, pColumnName)
};
};
/**
* determines if given values match a full field qualifier (name of table and name of column)
*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment