[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

7.8

Delete a record from the ColdFusion Array

Asked by erikTsomik in ColdFusion Application Server, Cold Fusion Markup Language, ColdFusion Studio

Tags: ColdFusion

I have an 2 dim array. The array contains the set of courses. Some of the courses are duplicated. What i need is to remove the duplicates with the stricest rules. Rules are applies to each courses.

HOW CAN I DO THIS
Below is the how the array get setup:
<cfset arryCourses = ArrayNew(2)>
<cfloop query="qry_getCoursesEvents">
                                    <cfif qry_getCoursesEvents.Type neq 3>
                                          <!---get Course name--->            
                                                <cfquery name="getCourseName" datasource="cfelsunrise">
                                                      Select CourseID,Description from Course_Catalog where courseID = <cfqueryparam cfsqltype="cf_sql_integer" value="#qry_getCoursesEvents.Courseid#">
                                                </cfquery>                        
                                                            <cfset arryCourses[currentrow][1] = getCourseName.CourseID>
                                                            <cfset arryCourses[currentrow][2] = trim(getCourseName.Description)>
                                                            <cfset arryCourses[currentrow][3] = qry_getCoursesEvents.type>            
                                                            <cfset arryCourses[currentrow][4] = qry_getCoursesEvents.TimeFrame>      
                                                            <cfset arryCourses[currentrow][5] = qry_getCoursesEvents.TimeFrameRule>            
                                                            <cfset arryCourses[currentrow][6] = qry_getCoursesEvents.DateRule>      
                                                            <cfset arryCourses[currentrow][7] = DateFormat(qry_getCoursesEvents.StartDate,"mm/dd/yyyy")>            
                                                            <cfset arryCourses[currentrow][8] = DateFormat(qry_getCoursesEvents.EndDate,"mm/dd/yyyy")>
                                                            <cfset arryCourses[currentrow][9] = qry_getCoursesEvents.FlowID>
                                                            <cfset arryCourses[currentrow][10] = qry_getCoursesEvents.OnBoardTaskID>
                                      <cfelse>
                                                <cfquery name="getEventName" datasource="cfelsunrise">
                                                      Select EventCatalogID,name from EventCatalog where EventCatalogID = <cfqueryparam cfsqltype="cf_sql_integer" value="#qry_getCoursesEvents.EventCatalogID#">
                                                </cfquery>            
                                                            <cfset arryCourses[currentrow][1] = getEventName.EventCatalogID>
                                                            <cfset arryCourses[currentrow][2] = trim(getEventName.name)>
                                                            <cfset arryCourses[currentrow][3] = qry_getCoursesEvents.type>            
                                                            <cfset arryCourses[currentrow][4] = qry_getCoursesEvents.TimeFrame>      
                                                            <cfset arryCourses[currentrow][5] = qry_getCoursesEvents.TimeFrameRule>
                                                            <cfset arryCourses[currentrow][6] = qry_getCoursesEvents.DateRule>
                                                            <cfset arryCourses[currentrow][7] = DateFormat(qry_getCoursesEvents.StartDate,"mm/dd/yyyy")>            
                                                            <cfset arryCourses[currentrow][8] = DateFormat(qry_getCoursesEvents.EndDate,"mm/dd/yyyy")>
                                                             <cfset arryCourses[currentrow][9] = qry_getCoursesEvents.FlowID>
                                                            <cfset arryCourses[currentrow][10] = qry_getCoursesEvents.OnBoardTaskID>
                                    </cfif>
                              </cfloop>                        
 
Related Solutions
Keywords: Delete a record from the ColdFusion Ar…
 
Loading Advertisement...
 
[+][-]08/07/09 08:02 AM, ID: 25043448Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08/07/09 08:09 AM, ID: 25043552Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]08/07/09 08:16 AM, ID: 25043648Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08/07/09 08:25 AM, ID: 25043760Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]08/07/09 09:05 AM, ID: 25044200Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08/07/09 09:16 AM, ID: 25044322Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]08/07/09 09:21 AM, ID: 25044384Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08/07/09 09:31 AM, ID: 25044496Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]08/07/09 09:46 AM, ID: 25044683Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08/07/09 09:49 AM, ID: 25044714Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]08/07/09 09:56 AM, ID: 25044791Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08/07/09 10:05 AM, ID: 25044870Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]08/07/09 11:34 AM, ID: 25045690Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]08/07/09 11:44 AM, ID: 25045776Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08/07/09 11:46 AM, ID: 25045797Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]08/07/09 12:41 PM, ID: 25046223Accepted Solution

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

About this solution

Zones: ColdFusion Application Server, Cold Fusion Markup Language, ColdFusion Studio
Tags: ColdFusion
Sign Up Now!
Solution Provided By: gdemaria
Participating Experts: 1
Solution Grade: A
 
[+][-]08/07/09 12:44 PM, ID: 25046243Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]08/07/09 12:49 PM, ID: 25046289Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08/07/09 12:50 PM, ID: 25046303Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]08/07/09 12:51 PM, ID: 25046309Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]08/07/09 12:56 PM, ID: 25046356Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08/07/09 01:01 PM, ID: 25046407Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]08/07/09 01:05 PM, ID: 25046431Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08/07/09 01:08 PM, ID: 25046460Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]08/07/09 01:15 PM, ID: 25046521Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08/07/09 01:36 PM, ID: 25046684Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]08/07/09 01:56 PM, ID: 25046878Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
 
Loading Advertisement...
20091111-EE-VQP-89 - Hierarchy / EE_QW_3_20080625