Deveel.Data.Sql.Statements.GrantPrivilegesStatement.ExecuteStatement C# (CSharp) Метод

ExecuteStatement() защищенный Метод

protected ExecuteStatement ( ExecutionContext context ) : void
context ExecutionContext
Результат void
        protected override void ExecuteStatement(ExecutionContext context)
        {
            var obj = context.Request.Access().FindObject(ObjectName);
            if (obj == null)
                throw new InvalidOperationException(String.Format("Object '{0}' was not found in the system.", ObjectName));

            if (!context.User.HasGrantOption(DbObjectType.Table, ObjectName, Privilege))
                throw new SecurityException(String.Format("User '{0}' has not the option to grant '{1}' to '{2}' on {3}",
                    context.User.Name, Privilege, Grantee, ObjectName));

            // TODO: Veirfy the current user has grant option
            context.Request.Access().GrantTo(Grantee, obj.ObjectInfo.ObjectType, obj.ObjectInfo.FullName, Privilege, WithGrant);
        }