protected static FR_L5TR_GaFTfR_1618_Array Execute(DbConnection Connection, DbTransaction Transaction, P_L5TR_GaFTfR_1618 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null) { var returnStatus = new FR_L5TR_GaFTfR_1618_Array(); DbCommand command = Connection.CreateCommand(); command.Connection = Connection; command.Transaction = Transaction; var commandLocation = "CL5_Lucentis_Treatments.Complex.Retrieval.SQL.cls_Get_all_FollowUp_Treatments_ForReport.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]*@TreatmentID", " IN $$TreatmentID$$"); CSV2Core_MySQL.Support.DBSQLSupport.AppendINStatement(command, "$TreatmentID$", Parameter.TreatmentID); List <L5TR_GaFTfR_1618_raw> results = new List <L5TR_GaFTfR_1618_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[] { "HEC_Patient_TreatmentID", "FirstName", "LastName", "IsTreatmentBilled", "IsScheduled", "IfSheduled_Date", "IfTreatmentBilled_Date", "IsTreatmentFollowup", "IsTreatmentPerformed", "IfTreatmentPerformed_Date", "DisplayName", "IfTreatmentPerformed_Date1", "IsTreatmentPerformed1", "IsTreatmentFollowup1", "IfTreatmentBilled_Date1", "IfSheduled_Date1", "IsScheduled1", "IsTreatmentBilled1", "HEC_Patient_TreatmentID1", "DoctorFirstName", "DoctorLastname", "DoctorTitle", "ScheduledDoctor_FName", "ScheduledDoctor_LName", "ScheduledDoctor_title" }); while (reader.Read()) { L5TR_GaFTfR_1618_raw resultItem = new L5TR_GaFTfR_1618_raw(); //0:Parameter HEC_Patient_TreatmentID of type Guid resultItem.HEC_Patient_TreatmentID = reader.GetGuid(0); //1:Parameter FirstName of type String resultItem.FirstName = reader.GetString(1); //2:Parameter LastName of type String resultItem.LastName = reader.GetString(2); //3:Parameter IsTreatmentBilled of type bool resultItem.IsTreatmentBilled = reader.GetBoolean(3); //4:Parameter IsScheduled of type bool resultItem.IsScheduled = reader.GetBoolean(4); //5:Parameter IfSheduled_Date of type DateTime resultItem.IfSheduled_Date = reader.GetDate(5); //6:Parameter IfTreatmentBilled_Date of type DateTime resultItem.IfTreatmentBilled_Date = reader.GetDate(6); //7:Parameter IsTreatmentFollowup of type bool resultItem.IsTreatmentFollowup = reader.GetBoolean(7); //8:Parameter IsTreatmentPerformed of type bool resultItem.IsTreatmentPerformed = reader.GetBoolean(8); //9:Parameter IfTreatmentPerformed_Date of type DateTime resultItem.IfTreatmentPerformed_Date = reader.GetDate(9); //10:Parameter DisplayName of type String resultItem.DisplayName = reader.GetString(10); //11:Parameter IfTreatmentPerformed_Date1 of type DateTime resultItem.IfTreatmentPerformed_Date1 = reader.GetDate(11); //12:Parameter IsTreatmentPerformed1 of type bool resultItem.IsTreatmentPerformed1 = reader.GetBoolean(12); //13:Parameter IsTreatmentFollowup1 of type bool resultItem.IsTreatmentFollowup1 = reader.GetBoolean(13); //14:Parameter IfTreatmentBilled_Date1 of type DateTime resultItem.IfTreatmentBilled_Date1 = reader.GetDate(14); //15:Parameter IfSheduled_Date1 of type DateTime resultItem.IfSheduled_Date1 = reader.GetDate(15); //16:Parameter IsScheduled1 of type bool resultItem.IsScheduled1 = reader.GetBoolean(16); //17:Parameter IsTreatmentBilled1 of type bool resultItem.IsTreatmentBilled1 = reader.GetBoolean(17); //18:Parameter HEC_Patient_TreatmentID1 of type Guid resultItem.HEC_Patient_TreatmentID1 = reader.GetGuid(18); //19:Parameter DoctorFirstName of type String resultItem.DoctorFirstName = reader.GetString(19); //20:Parameter DoctorLastname of type String resultItem.DoctorLastname = reader.GetString(20); //21:Parameter DoctorTitle of type String resultItem.DoctorTitle = reader.GetString(21); //22:Parameter ScheduledDoctor_FName of type String resultItem.ScheduledDoctor_FName = reader.GetString(22); //23:Parameter ScheduledDoctor_LName of type String resultItem.ScheduledDoctor_LName = reader.GetString(23); //24:Parameter ScheduledDoctor_title of type String resultItem.ScheduledDoctor_title = reader.GetString(24); results.Add(resultItem); } } catch (Exception ex) { reader.Close(); throw new Exception("Exception occured durng data retrieval in method cls_Get_all_FollowUp_Treatments_ForReport", ex); } reader.Close(); //Load all the dictionaries from the datatables loader.Load(); returnStatus.Result = L5TR_GaFTfR_1618_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_L5TR_GaFTfR_1618_Array Invoke(DbConnection Connection, DbTransaction Transaction, P_L5TR_GaFTfR_1618 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null) { return(Invoke(Connection, Transaction, null, Parameter, securityTicket)); }
///<summary> /// Method Invocation of wrapper classes ///<summary> protected static FR_L5TR_GaFTfR_1618_Array Invoke(DbConnection Connection, DbTransaction Transaction, string ConnectionString, P_L5TR_GaFTfR_1618 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null) { bool cleanupConnection = Connection == null; bool cleanupTransaction = Transaction == null; FR_L5TR_GaFTfR_1618_Array functionReturn = new FR_L5TR_GaFTfR_1618_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_all_FollowUp_Treatments_ForReport", ex); } return(functionReturn); }
///<summary> /// Opens the connection/transaction for the given connectionString, and closes them when complete ///<summary> public static FR_L5TR_GaFTfR_1618_Array Invoke(string ConnectionString, P_L5TR_GaFTfR_1618 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null) { return(Invoke(null, null, ConnectionString, Parameter, securityTicket)); }