myt/exporters/procedure.ejs

12 lines
298 B
Plaintext
Executable File

<%- begin %> <%- typeAndName %>(<%- params.paramList %>)<%
if (params.dataAccess) { %>
<%- params.dataAccess %><%
}
if (params.securityType == 'INVOKER') { %>
SQL SECURITY <%- params.securityType %><%
}
if (params.comment) { %>
COMMENT <%- params.comment %><%
} %>
<%- params.body %><%- end %>