Deveel.Data.Sql.Statements.UpdateFromCursorStatement.PrepareStatement C# (CSharp) Method

PrepareStatement() protected method

protected PrepareStatement ( IRequest context ) : SqlStatement
context IRequest
return SqlStatement
        protected override SqlStatement PrepareStatement(IRequest context)
        {
            var cursor = context.Context.FindCursor(CursorName);
            if (cursor == null)
                throw new ObjectNotFoundException(new ObjectName(CursorName), "The source cursor was not found.");

            throw new NotImplementedException();
        }