如果过程没有参数,如何调用过程

时间:2017-12-18 12:09:22

标签: asp.net

create proc sp_dropdown

as
begin

SELECT r1.regid, r.registration
FROM table1 as r1
INNER JOIN table2 as r  ON r1.regid=r.registration and r1.status=r.status
end

1 个答案:

答案 0 :(得分:0)

上面的类是我的sp返回类型,

Sub collectNums()

Dim eNumStorage() As String ' initial storage array to take values
Dim i As Long
Dim j As Long
Dim lrow As Long

lrow = Cells(Rows.Count, "B").End(xlUp).Row ' The amount of stuff in the column
ReDim eNumStorage(1 To lrow - 1)

For i = lrow To 2 Step -1
    If (Not IsEmpty(Cells(i, 2).Value)) Then ' checks to make sure the value isn't empty
        j = j + 1
        eNumStorage(j) = Cells(i, 2).Value
    End If
Next i

ReDim Preserve eNumStorage(1 To j)

'Not sure what this bit is doing so have left as is
If (IsEmpty(eNumStorage)) Then
    MsgBox ("You did not enter an employee number for which to query our database. Quitting")
    Exit Sub
End If

For j = LBound(eNumStorage) To UBound(eNumStorage)  ' loop through the previous array
    eNumStorage(j) = Replace(eNumStorage(j), " ", "")
    eNumStorage(j) = Replace(eNumStorage(j), ",", "")
Next j

End Sub

我可以称之为

public class GetAllTableNames_Result
    {
        public string Name { get; set; }
    }

我相信你可以得到点