-
Notifications
You must be signed in to change notification settings - Fork 2
DbRoutine
do- edited this page Oct 4, 2023
·
8 revisions
DbRoutine is a DbObject descendant describing a stored piece of executable code.
This class is considered abstract, instances must be DbProcedures, DbFunctions or, maybe, some vendor specific objects.
| Name | Type | Description | Notes |
|---|---|---|---|
lang |
String |
The programming language name | Such as 'SQL'
|
parameters |
[DbRoutineParameter] | Parameter list |
[] by default |
body |
String |
The source code | In lang
|
options |
[String] |
Miscellaneous options | Vendor specific, [] by default |