コード例 #1
0
        ///<summary>
        /// Method Invocation of wrapper classes
        ///<summary>
        protected static FR_CAS_GOfT_1106_Array Invoke(DbConnection Connection, DbTransaction Transaction, string ConnectionString, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
        {
            bool cleanupConnection  = Connection == null;
            bool cleanupTransaction = Transaction == null;

            FR_CAS_GOfT_1106_Array functionReturn = new FR_CAS_GOfT_1106_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_Octs_for_Tenant", ex);
            }
            return(functionReturn);
        }
コード例 #2
0
        protected static FR_CAS_GOfT_1106_Array Execute(DbConnection Connection, DbTransaction Transaction, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
        {
            var returnStatus = new FR_CAS_GOfT_1106_Array();

            DbCommand command = Connection.CreateCommand();

            command.Connection  = Connection;
            command.Transaction = Transaction;
            var commandLocation = "DataImporter.DBMethods.Case.Atomic.Retrieval.SQL.cls_Get_Octs_for_Tenant.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 <CAS_GOfT_1106> results = new List <CAS_GOfT_1106>();
            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[] { "OctDoctorName", "OpDoctorName", "PatientName", "PatientID", "CaseID", "ID", "DiagnoseCode", "Localization", "DiagnoseID", "OpDoctorID", "OctDoctorID", "OpPracticeID", "OctPracticeID", "OpPracticeName", "PatientBirthDate", "TreatmentDate", "IsCancelled", "IsOpPerformed", "DrugID", "IsPerformed" });
                while (reader.Read())
                {
                    CAS_GOfT_1106 resultItem = new CAS_GOfT_1106();
                    //0:Parameter OctDoctorName of type String
                    resultItem.OctDoctorName = reader.GetString(0);
                    //1:Parameter OpDoctorName of type String
                    resultItem.OpDoctorName = reader.GetString(1);
                    //2:Parameter PatientName of type String
                    resultItem.PatientName = reader.GetString(2);
                    //3:Parameter PatientID of type Guid
                    resultItem.PatientID = reader.GetGuid(3);
                    //4:Parameter CaseID of type Guid
                    resultItem.CaseID = reader.GetGuid(4);
                    //5:Parameter ID of type Guid
                    resultItem.ID = reader.GetGuid(5);
                    //6:Parameter DiagnoseCode of type String
                    resultItem.DiagnoseCode = reader.GetString(6);
                    //7:Parameter Localization of type String
                    resultItem.Localization = reader.GetString(7);
                    //8:Parameter DiagnoseID of type Guid
                    resultItem.DiagnoseID = reader.GetGuid(8);
                    //9:Parameter OpDoctorID of type Guid
                    resultItem.OpDoctorID = reader.GetGuid(9);
                    //10:Parameter OctDoctorID of type Guid
                    resultItem.OctDoctorID = reader.GetGuid(10);
                    //11:Parameter OpPracticeID of type Guid
                    resultItem.OpPracticeID = reader.GetGuid(11);
                    //12:Parameter OctPracticeID of type Guid
                    resultItem.OctPracticeID = reader.GetGuid(12);
                    //13:Parameter OpPracticeName of type String
                    resultItem.OpPracticeName = reader.GetString(13);
                    //14:Parameter PatientBirthDate of type DateTime
                    resultItem.PatientBirthDate = reader.GetDate(14);
                    //15:Parameter TreatmentDate of type DateTime
                    resultItem.TreatmentDate = reader.GetDate(15);
                    //16:Parameter IsCancelled of type Boolean
                    resultItem.IsCancelled = reader.GetBoolean(16);
                    //17:Parameter IsOpPerformed of type Boolean
                    resultItem.IsOpPerformed = reader.GetBoolean(17);
                    //18:Parameter DrugID of type Guid
                    resultItem.DrugID = reader.GetGuid(18);
                    //19:Parameter IsPerformed of type Boolean
                    resultItem.IsPerformed = reader.GetBoolean(19);

                    results.Add(resultItem);
                }
            }
            catch (Exception ex)
            {
                reader.Close();
                throw new Exception("Exception occured durng data retrieval in method cls_Get_Octs_for_Tenant", ex);
            }
            reader.Close();
            //Load all the dictionaries from the datatables
            loader.Load();

            returnStatus.Result = results.ToArray();
            return(returnStatus);
        }