Tagged Questions

0
votes
1answer
14 views

What would the best technology/language choice be for converting MARK IV data manipulation programs?

My office relies on dozens of old MARK IV programs on a mainframe to pull down and manipulate data from a DB2 database into mainframe files (which eventually turn into excel spread …
2
votes
4answers
857 views

Removing elements with Array.map in JavaScript

I would like to filter an array of items by using the map() function. Here is a code snippet: var filteredItems = items.map(function(item) { if( ...some condition... ) { …
2
votes
4answers
378 views

How do you handle the fetchxml result data?

I have avoided working with fetchxml as I have been unsure the best way to handle the result data after calling crmService.Fetch(fetchXml). In a couple of situations, I have used a …
2
votes
4answers
37 views

Artificially Add a Record To MySQL Results

Is there any way to slip in a record to the top of a result set in MySQL? For instance, if my results are: 1 | a 2 | b 3 | c etc I want to be able to get: Select | Select 1 …
7
votes
11answers
11k views

How do I remove objects from an Array in java?

Given an Array of n Objects, let's say is an Array of Strings, and it has the following values: foo[0]="a"; foo[1]="cc"; foo[2]="a"; foo[3]="dd"; What do I have to do to delet …