Login    
 
 
 
 
Text/HTML
  
You are here :: Blogs Saturday, May 19, 2012

Search
Note: This uses the internal blog search engine. The Google search engine is also available at the top of the page.
  
Disclaimer

Please review the site disclaimer before downloading or using content found on this site

  
Categories
  
DEVSHED Blog
As always, I welcome your comments!
Dec 4

Written by: Steve Gray
12/4/2009 9:41 AM  RssIcon

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

Tags:
Categories:
As always, I welcome your comments!
  
 
 
Home | Products | Blogs | Contact Us | Links | God's Plan
Privacy Statement | Terms Of Use
 
Copyright 2011 by Devshed.us