Beispiel #1
0
 /// <summary>
 /// method to add the parameters to the specified provider type command object
 /// </summary>
 /// <param name="paramsCount"></param>
 public void CreateParameters(int paramsCount)
 {
     try
     {
         idbParameters = new IDbDataParameter[paramsCount];
         // method to get the list of parametes added to the parameter object array
         idbParameters = DBManagerFactory.GetParameters(this.ProviderType, paramsCount);
     }
     catch (Exception ex)
     { throw ex; }
 }