programming-examples/asp/Strings/GetProcedureDef Function.asp

29 lines
691 B
Plaintext
Raw Permalink Normal View History

2019-11-18 14:25:58 +01:00
Function GetProcedureDef(ByVal connstring, ByVal procname)
Dim cnn, cmd, prm, cat, d
Set d = CreateObject("Scripting.Dictionary")
Set cnn = CreateObject("ADODB.Connection")
' Open the Connection
cnn.Open connstring
' Open the catalog
Set cat = CreateObject("ADOX.Catalog")
cat.ActiveConnection = cnn
' Get the command object
Set cmd = cat.Procedures(procname).Command
' Retrieve Parameter information
cmd.Parameters.Refresh
For Each prm In cmd.Parameters
d.Add prm.Name, prm.Type
Next
Set cmd = Nothing
Set cat = Nothing
Set cnn = Nothing
Set GetProcedureDef = d
End Function