[This is preliminary documentation and is subject to change.]
            Adds a parameter to the parameter list. The parameter value will be null
            
    Namespace: 
   OfficeClip.DBLayerAssembly: OfficeClip.DBLayer (in OfficeClip.DBLayer)
Version: 8.1.1.0
Syntax
| C# | 
|---|
public void AddParameter( string parameterSP, SqlDbType sdt, int size )  | 
| Visual Basic (Declaration) | 
|---|
Public Sub AddParameter ( _ parameterSP As String, _ sdt As SqlDbType, _ size As Integer _ )  | 
| Visual C++ | 
|---|
public: void AddParameter( String^ parameterSP, SqlDbType sdt, int size )  | 
Parameters
- parameterSP
 - Type: System..::.String
The name of the stored procedure parameter 
- sdt
 - Type: System.Data..::.SqlDbType
The sql data type 
- size
 - Type: System..::.Int32
The size of the parameter in bytes 
