16 lines
388 B
C#
16 lines
388 B
C#
using Microsoft.SqlServer.TransactSql.ScriptDom;
|
|
using SQLLinter.Common;
|
|
|
|
namespace SQLLinter.Infrastructure.Rules;
|
|
|
|
public class DisallowCursorRule : BaseRuleVisitor, IRule
|
|
{
|
|
|
|
public override string Text => "Обнаружено использование оператора CURSOR";
|
|
|
|
public override void Visit(CursorStatement node)
|
|
{
|
|
AddViolation(node);
|
|
}
|
|
}
|