diff --git a/process/Sql_lib/process.js b/process/Sql_lib/process.js index fad01349a3797469eeb067bbc603861f2e6df144..7e630b76445f6781a41af7e82cfc5a53ff172ccc 100644 --- a/process/Sql_lib/process.js +++ b/process/Sql_lib/process.js @@ -946,9 +946,6 @@ SqlBuilder._ERROR_UPDATE_VALUES_INVALID = function () */ SqlBuilder.begin = function () { - logging.log("Warning: using .begin is deprecated as it's now possible to write \"new SqlBuilder().select(...).from(...)....\"\n" - + "You can now use \"newSelect(...)\", \"newWhere(...)\", \"newWhereIfSet(...)\" or \"new SqlBuilder()\" to create a new SqlBuilder instance.\n" + - + "For further SqlBuilder usage see the documentation-property of the Sql_lib."); return new SqlBuilder(); }