Dec
4
Written by:
Steve Gray
12/4/2009 9:41 AM
This class is part of the DEVSHED data access classes. The overview is here
Imports Microsoft.VisualBasic
Imports System.Data
Public Class commandParameter
Public ParamName As String
Public ParamValue As Object
Public ParamType As System.Data.DbType
Sub New(ByVal paramName As String, ByVal paramValue As Object, _
ByVal paramType As System.Data.DbType)
Me.ParamName = paramName
Me.ParamValue = paramValue
Me.ParamType = paramType
End Sub
End Class
As always, I welcome your comments!