Esempio n. 1
0
        protected override SqlStatement VisitDeclareException(DeclareExceptionStatement statement)
        {
            builder.AppendFormat("EXCEPTION {0}", statement.ExceptionName);

            return(base.VisitDeclareException(statement));
        }
Esempio n. 2
0
        protected override SqlStatement VisitDeclareException(DeclareExceptionStatement statement)
        {
            builder.AppendFormat("EXCEPTION {0}", statement.ExceptionName);

            return base.VisitDeclareException(statement);
        }
Esempio n. 3
0
 protected virtual SqlStatement VisitDeclareException(DeclareExceptionStatement statement)
 {
     return new DeclareExceptionStatement(statement.ExceptionName);
 }
Esempio n. 4
0
 protected virtual SqlStatement VisitDeclareException(DeclareExceptionStatement statement)
 {
     return(new DeclareExceptionStatement(statement.ExceptionName));
 }