Esempio n. 1
0
        protected override async Task ExecuteStatementAsync(StatementContext context)
        {
            try {
                var value = await context.AssignVariable(Variable, Value).ReduceToConstantAsync(context);

                context.SetResult(value);
            } catch (SqlExpressionException ex) {
                throw new SqlStatementException($"Could not assign the variable '{Variable}' because of an error", ex);
            } catch (Exception ex) {
                throw new SqlStatementException($"Could not assign the variable '{Variable}' because of an error", ex);
            }
        }
        protected override Task ExecuteStatementAsync(StatementContext context)
        {
            try {
                var value = context.AssignVariable(Variable, Value);
                context.SetResult(value);
            } catch (SqlExpressionException ex) {
                throw new SqlStatementException($"Could not assign the variable '{Variable}' because of an error", ex);
            } catch (Exception ex) {
                throw new SqlStatementException($"Could not assign the variable '{Variable}' because of an error", ex);
            }

            return(Task.CompletedTask);
        }