///<summary> /// Method Invocation of wrapper classes ///<summary> protected static FR_ER_GEROfPID_1123_Array Invoke(DbConnection Connection, DbTransaction Transaction, string ConnectionString, P_ER_GEROfPID_1123 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null) { bool cleanupConnection = Connection == null; bool cleanupTransaction = Transaction == null; FR_ER_GEROfPID_1123_Array functionReturn = new FR_ER_GEROfPID_1123_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 new Exception("Exception occured in method cls_Get_ElasticRefresh_Orders_for_PatientID", ex); } return(functionReturn); }
protected static FR_ER_GEROfPID_1123_Array Execute(DbConnection Connection, DbTransaction Transaction, P_ER_GEROfPID_1123 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null) { var returnStatus = new FR_ER_GEROfPID_1123_Array(); DbCommand command = Connection.CreateCommand(); command.Connection = Connection; command.Transaction = Transaction; var commandLocation = "MMDocConnectDBMethods.ElasticRefresh.SQL.cls_Get_ElasticRefresh_Orders_for_PatientID.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; command.CommandText = System.Text.RegularExpressions.Regex.Replace(command.CommandText, "=[ \t]*@PatientIDs", " IN $$PatientIDs$$"); CSV2Core_MySQL.Support.DBSQLSupport.AppendINStatement(command, "$PatientIDs$", Parameter.PatientIDs); List <ER_GEROfPID_1123> results = new List <ER_GEROfPID_1123>(); 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[] { "patient_id", "status_code", "case_id", "order_id", "delivery_time_from", "delivery_time_to", "delivery_date", "treatment_date", "pharmacy_bpt_id", "order_modification_timestamp", "practice_id", "drug_id" }); while (reader.Read()) { ER_GEROfPID_1123 resultItem = new ER_GEROfPID_1123(); //0:Parameter patient_id of type Guid resultItem.patient_id = reader.GetGuid(0); //1:Parameter status_code of type int resultItem.status_code = reader.GetInteger(1); //2:Parameter case_id of type Guid resultItem.case_id = reader.GetGuid(2); //3:Parameter order_id of type Guid resultItem.order_id = reader.GetGuid(3); //4:Parameter delivery_time_from of type DateTime resultItem.delivery_time_from = reader.GetDate(4); //5:Parameter delivery_time_to of type DateTime resultItem.delivery_time_to = reader.GetDate(5); //6:Parameter delivery_date of type DateTime resultItem.delivery_date = reader.GetDate(6); //7:Parameter treatment_date of type DateTime resultItem.treatment_date = reader.GetDate(7); //8:Parameter pharmacy_bpt_id of type Guid resultItem.pharmacy_bpt_id = reader.GetGuid(8); //9:Parameter order_modification_timestamp of type DateTime resultItem.order_modification_timestamp = reader.GetDate(9); //10:Parameter practice_id of type Guid resultItem.practice_id = reader.GetGuid(10); //11:Parameter drug_id of type Guid resultItem.drug_id = reader.GetGuid(11); results.Add(resultItem); } } catch (Exception ex) { reader.Close(); throw new Exception("Exception occured durng data retrieval in method cls_Get_ElasticRefresh_Orders_for_PatientID", ex); } reader.Close(); //Load all the dictionaries from the datatables loader.Load(); returnStatus.Result = results.ToArray(); return(returnStatus); }