///<summary> /// Method Invocation of wrapper classes ///<summary> protected static FR_PH_GIP_1421_Array Invoke(DbConnection Connection, DbTransaction Transaction, string ConnectionString, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null) { bool cleanupConnection = Connection == null; bool cleanupTransaction = Transaction == null; FR_PH_GIP_1421_Array functionReturn = new FR_PH_GIP_1421_Array(); try { if (cleanupConnection == true) { Connection = CSV2Core_MySQL.Support.DBSQLSupport.CreateConnection(ConnectionString); Connection.Open(); } if (cleanupTransaction == true) { Transaction = Connection.BeginTransaction(); } functionReturn = Execute(Connection, Transaction, securityTicket); #region Cleanup Connection/Transaction //Commit the transaction if (cleanupTransaction == true) { Transaction.Commit(); } //Close the connection if (cleanupConnection == true) { Connection.Close(); } #endregion } catch (Exception ex) { try { if (cleanupTransaction == true && Transaction != null) { Transaction.Rollback(); } } catch { } try { if (cleanupConnection == true && Connection != null) { Connection.Close(); } } catch { } throw new Exception("Exception occured in method cls_Get_Internal_Pharmacies", ex); } return(functionReturn); }
protected static FR_PH_GIP_1421_Array Execute(DbConnection Connection, DbTransaction Transaction, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null) { var returnStatus = new FR_PH_GIP_1421_Array(); DbCommand command = Connection.CreateCommand(); command.Connection = Connection; command.Transaction = Transaction; var commandLocation = "MMDocConnectDBMethods.Pharmacy.Atomic.Retrieval.SQL.cls_Get_Internal_Pharmacies.sql"; command.CommandText = new System.IO.StreamReader(System.Reflection.Assembly.GetExecutingAssembly().GetManifestResourceStream(commandLocation)).ReadToEnd(); CSV2Core_MySQL.Support.DBSQLSupport.SetParameter(command, "ticket", securityTicket); command.CommandTimeout = QueryTimeout; List <PH_GIP_1421> results = new List <PH_GIP_1421>(); var loader = new CSV2Core_MySQL.Dictionaries.MultiTable.Loader.DictionaryLoader(Connection, Transaction); var reader = new CSV2Core_MySQL.Support.DBSQLReader(command.ExecuteReader()); try { reader.SetOrdinals(new string[] { "PharmacyID", "PharmacyName", "Contact_Email", "Contact_Telephone", "Contact_Fax", "Street_Name", "Street_Number", "ZIP", "Town", "PharmacyType", "ContactPersonName" }); while (reader.Read()) { PH_GIP_1421 resultItem = new PH_GIP_1421(); //0:Parameter PharmacyID of type Guid resultItem.PharmacyID = reader.GetGuid(0); //1:Parameter PharmacyName of type string resultItem.PharmacyName = reader.GetString(1); //2:Parameter Contact_Email of type string resultItem.Contact_Email = reader.GetString(2); //3:Parameter Contact_Telephone of type string resultItem.Contact_Telephone = reader.GetString(3); //4:Parameter Contact_Fax of type string resultItem.Contact_Fax = reader.GetString(4); //5:Parameter Street_Name of type string resultItem.Street_Name = reader.GetString(5); //6:Parameter Street_Number of type string resultItem.Street_Number = reader.GetString(6); //7:Parameter ZIP of type string resultItem.ZIP = reader.GetString(7); //8:Parameter Town of type string resultItem.Town = reader.GetString(8); //9:Parameter PharmacyType of type string resultItem.PharmacyType = reader.GetString(9); //10:Parameter ContactPersonName of type string resultItem.ContactPersonName = reader.GetString(10); results.Add(resultItem); } } catch (Exception ex) { reader.Close(); throw new Exception("Exception occured durng data retrieval in method cls_Get_Internal_Pharmacies", ex); } reader.Close(); //Load all the dictionaries from the datatables loader.Load(); returnStatus.Result = results.ToArray(); return(returnStatus); }