protected static FR_L5ME_GRPfPDID_1202_Array Execute(DbConnection Connection, DbTransaction Transaction, P_L5ME_GRPfPDID_1202 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null) { var returnStatus = new FR_L5ME_GRPfPDID_1202_Array(); DbCommand command = Connection.CreateCommand(); command.Connection = Connection; command.Transaction = Transaction; var commandLocation = "CL5_MyHealthClub_Medication.Atomic.Retrieval.SQL.cls_Get_RecommendedProduct_for_PotentialDiagnosisID.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; CSV2Core_MySQL.Support.DBSQLSupport.SetParameter(command, "DiagnosisID", Parameter.DiagnosisID); List <L5ME_GRPfPDID_1202_raw> results = new List <L5ME_GRPfPDID_1202_raw>(); 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[] { "Product_Name_DictID", "HEC_ProductID", "DosageForm_Name_DictID", "Manufacturer", "Strength_Name", "PackageContent_DisplayLabel", "Strength_Units", "HEC_DIA_RecommendedProductID", "HEC_SUB_SubstanceID", "SubstanceName_Label_DictID", "HEC_DIA_RecommendedProduct_DosageID", "DosageText", "HEC_DosageID", "IsDefaultDosage" }); while (reader.Read()) { L5ME_GRPfPDID_1202_raw resultItem = new L5ME_GRPfPDID_1202_raw(); //0:Parameter Product_Name of type Dict resultItem.Product_Name = reader.GetDictionary(0); resultItem.Product_Name.SourceTable = "cmn_pro_products"; loader.Append(resultItem.Product_Name); //1:Parameter HEC_ProductID of type Guid resultItem.HEC_ProductID = reader.GetGuid(1); //2:Parameter DosageForm_Name of type Dict resultItem.DosageForm_Name = reader.GetDictionary(2); resultItem.DosageForm_Name.SourceTable = "hec_product_dosageforms"; loader.Append(resultItem.DosageForm_Name); //3:Parameter Manufacturer of type String resultItem.Manufacturer = reader.GetString(3); //4:Parameter Strength_Name of type String resultItem.Strength_Name = reader.GetString(4); //5:Parameter PackageContent_DisplayLabel of type String resultItem.PackageContent_DisplayLabel = reader.GetString(5); //6:Parameter Strength_Units of type String resultItem.Strength_Units = reader.GetString(6); //7:Parameter HEC_DIA_RecommendedProductID of type Guid resultItem.HEC_DIA_RecommendedProductID = reader.GetGuid(7); //8:Parameter HEC_SUB_SubstanceID of type Guid resultItem.HEC_SUB_SubstanceID = reader.GetGuid(8); //9:Parameter SubstanceName_Label of type Dict resultItem.SubstanceName_Label = reader.GetDictionary(9); resultItem.SubstanceName_Label.SourceTable = "hec_sub_substance_names"; loader.Append(resultItem.SubstanceName_Label); //10:Parameter HEC_DIA_RecommendedProduct_DosageID of type Guid resultItem.HEC_DIA_RecommendedProduct_DosageID = reader.GetGuid(10); //11:Parameter DosageText of type String resultItem.DosageText = reader.GetString(11); //12:Parameter HEC_DosageID of type Guid resultItem.HEC_DosageID = reader.GetGuid(12); //13:Parameter IsDefaultDosage of type bool resultItem.IsDefaultDosage = reader.GetBoolean(13); results.Add(resultItem); } } catch (Exception ex) { reader.Close(); throw ex; } reader.Close(); //Load all the dictionaries from the datatables loader.Load(); returnStatus.Result = L5ME_GRPfPDID_1202_raw.Convert(results).ToArray(); return(returnStatus); }
///<summary> /// Invokes the method for the given Connection, and Transaction, leaving them open/not commited if no exceptions occured ///<summary> public static FR_L5ME_GRPfPDID_1202_Array Invoke(DbConnection Connection, DbTransaction Transaction, P_L5ME_GRPfPDID_1202 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null) { return(Invoke(Connection, Transaction, null, Parameter, securityTicket)); }
///<summary> /// Method Invocation of wrapper classes ///<summary> protected static FR_L5ME_GRPfPDID_1202_Array Invoke(DbConnection Connection, DbTransaction Transaction, string ConnectionString, P_L5ME_GRPfPDID_1202 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null) { bool cleanupConnection = Connection == null; bool cleanupTransaction = Transaction == null; FR_L5ME_GRPfPDID_1202_Array functionReturn = new FR_L5ME_GRPfPDID_1202_Array(); try { if (cleanupConnection == true) { Connection = CSV2Core_MySQL.Support.DBSQLSupport.CreateConnection(ConnectionString); Connection.Open(); } if (cleanupTransaction == true) { Transaction = Connection.BeginTransaction(); } functionReturn = Execute(Connection, Transaction, Parameter, 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 ex; } return(functionReturn); }
///<summary> /// Opens the connection/transaction for the given connectionString, and closes them when complete ///<summary> public static FR_L5ME_GRPfPDID_1202_Array Invoke(string ConnectionString, P_L5ME_GRPfPDID_1202 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null) { return(Invoke(null, null, ConnectionString, Parameter, securityTicket)); }