///<summary> /// Invokes the method for the given Connection, and Transaction, leaving them open/not commited if no exceptions occured ///<summary> public static FR_L5EX_GCPM_1150_Array Invoke(DbConnection Connection, DbTransaction Transaction, P_L5EX_GCPM_1150 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null) { return(Invoke(Connection, Transaction, null, Parameter, securityTicket)); }
protected static FR_L5EX_GCPM_1150_Array Execute(DbConnection Connection, DbTransaction Transaction, P_L5EX_GCPM_1150 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null) { var returnStatus = new FR_L5EX_GCPM_1150_Array(); DbCommand command = Connection.CreateCommand(); command.Connection = Connection; command.Transaction = Transaction; var commandLocation = "CL5_MyHealthClub_Examanations.Atomic.Retrieval.SQL.cls_Get_Curent_Patient_Diagnoses.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, "PatientID", Parameter.PatientID); List <L5EX_GCPM_1150> results = new List <L5EX_GCPM_1150>(); 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_ACT_PerformedAction_DiagnosisUpdateID", "diagnosed_on", "ICD10_Code", "PotentialDiagnosis_Name_DictID", "ProfileImage_Document_RefID", "doctor" }); while (reader.Read()) { L5EX_GCPM_1150 resultItem = new L5EX_GCPM_1150(); //0:Parameter HEC_ACT_PerformedAction_DiagnosisUpdateID of type Guid resultItem.HEC_ACT_PerformedAction_DiagnosisUpdateID = reader.GetGuid(0); //1:Parameter diagnosed_on of type DateTime resultItem.diagnosed_on = reader.GetDate(1); //2:Parameter ICD10_Code of type String resultItem.ICD10_Code = reader.GetString(2); //3:Parameter PotentialDiagnosis_Name of type Dict resultItem.PotentialDiagnosis_Name = reader.GetDictionary(3); resultItem.PotentialDiagnosis_Name.SourceTable = "hec_dia_potentialdiagnoses"; loader.Append(resultItem.PotentialDiagnosis_Name); //4:Parameter ProfileImage_Document_RefID of type Guid resultItem.ProfileImage_Document_RefID = reader.GetGuid(4); //5:Parameter doctor of type String resultItem.doctor = reader.GetString(5); results.Add(resultItem); } } catch (Exception ex) { reader.Close(); throw ex; } reader.Close(); //Load all the dictionaries from the datatables loader.Load(); returnStatus.Result = results.ToArray(); return(returnStatus); }
///<summary> /// Opens the connection/transaction for the given connectionString, and closes them when complete ///<summary> public static FR_L5EX_GCPM_1150_Array Invoke(string ConnectionString, P_L5EX_GCPM_1150 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null) { return(Invoke(null, null, ConnectionString, Parameter, securityTicket)); }
///<summary> /// Method Invocation of wrapper classes ///<summary> protected static FR_L5EX_GCPM_1150_Array Invoke(DbConnection Connection, DbTransaction Transaction, string ConnectionString, P_L5EX_GCPM_1150 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null) { bool cleanupConnection = Connection == null; bool cleanupTransaction = Transaction == null; FR_L5EX_GCPM_1150_Array functionReturn = new FR_L5EX_GCPM_1150_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); }