protected static FR_L5PR_GRPCfHL_1418_Array Execute(DbConnection Connection, DbTransaction Transaction, P_L5PR_GRPCfHL_1418 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null) { var returnStatus = new FR_L5PR_GRPCfHL_1418_Array(); DbCommand command = Connection.CreateCommand(); command.Connection = Connection; command.Transaction = Transaction; var commandLocation = "CL5_APOProcurement_Proposals.Atomic.Retrieval.SQL.cls_Get_RequestProposals_Customer_for_HeaderIdList.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]*@HeaderID_List", " IN $$HeaderID_List$$"); CSV2Core_MySQL.Support.DBSQLSupport.AppendINStatement(command, "$HeaderID_List$", Parameter.HeaderID_List); List <L5PR_GRPCfHL_1418> results = new List <L5PR_GRPCfHL_1418>(); 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[] { "ORD_CUO_RFO_RequestForProposal_HeaderID", "RequestingBusinessParticipant_RefID", "RequestForProposal_Number", "DateOfPublish", "ProposalDeadline", "CompleteDeliveryUntillDate", "RequestForProposalHeaderITPL", "ORD_CUO_RFP_RequestForProposal_PositionID", "CMN_PRO_Product_RefID", "Quantity", "IsReplacementPermitted", "OrderSequence", "DeliveryUntillDate", "RequestForProposalPositionITPL" }); while (reader.Read()) { L5PR_GRPCfHL_1418 resultItem = new L5PR_GRPCfHL_1418(); //0:Parameter ORD_CUO_RFO_RequestForProposal_HeaderID of type Guid resultItem.ORD_CUO_RFO_RequestForProposal_HeaderID = reader.GetGuid(0); //1:Parameter RequestingBusinessParticipant_RefID of type Guid resultItem.RequestingBusinessParticipant_RefID = reader.GetGuid(1); //2:Parameter RequestForProposal_Number of type String resultItem.RequestForProposal_Number = reader.GetString(2); //3:Parameter DateOfPublish of type DateTime resultItem.DateOfPublish = reader.GetDate(3); //4:Parameter ProposalDeadline of type String resultItem.ProposalDeadline = reader.GetString(4); //5:Parameter CompleteDeliveryUntillDate of type DateTime resultItem.CompleteDeliveryUntillDate = reader.GetDate(5); //6:Parameter RequestForProposalHeaderITPL of type String resultItem.RequestForProposalHeaderITPL = reader.GetString(6); //7:Parameter ORD_CUO_RFP_RequestForProposal_PositionID of type Guid resultItem.ORD_CUO_RFP_RequestForProposal_PositionID = reader.GetGuid(7); //8:Parameter CMN_PRO_Product_RefID of type Guid resultItem.CMN_PRO_Product_RefID = reader.GetGuid(8); //9:Parameter Quantity of type double resultItem.Quantity = reader.GetDouble(9); //10:Parameter IsReplacementPermitted of type bool resultItem.IsReplacementPermitted = reader.GetBoolean(10); //11:Parameter OrderSequence of type int resultItem.OrderSequence = reader.GetInteger(11); //12:Parameter DeliveryUntillDate of type DateTime resultItem.DeliveryUntillDate = reader.GetDate(12); //13:Parameter RequestForProposalPositionITPL of type String resultItem.RequestForProposalPositionITPL = reader.GetString(13); results.Add(resultItem); } } catch (Exception ex) { reader.Close(); throw new Exception("Exception occured durng data retrieval in method cls_Get_RequestProposals_Customer_for_HeaderIdList", ex); } reader.Close(); //Load all the dictionaries from the datatables loader.Load(); returnStatus.Result = 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_L5PR_GRPCfHL_1418_Array Invoke(DbConnection Connection, DbTransaction Transaction, P_L5PR_GRPCfHL_1418 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null) { return(Invoke(Connection, Transaction, null, Parameter, securityTicket)); }
///<summary> /// Method Invocation of wrapper classes ///<summary> protected static FR_L5PR_GRPCfHL_1418_Array Invoke(DbConnection Connection, DbTransaction Transaction, string ConnectionString, P_L5PR_GRPCfHL_1418 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null) { bool cleanupConnection = Connection == null; bool cleanupTransaction = Transaction == null; FR_L5PR_GRPCfHL_1418_Array functionReturn = new FR_L5PR_GRPCfHL_1418_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_RequestProposals_Customer_for_HeaderIdList", ex); } return(functionReturn); }
///<summary> /// Opens the connection/transaction for the given connectionString, and closes them when complete ///<summary> public static FR_L5PR_GRPCfHL_1418_Array Invoke(string ConnectionString, P_L5PR_GRPCfHL_1418 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null) { return(Invoke(null, null, ConnectionString, Parameter, securityTicket)); }