1
vote
3answers
32 views
assigning to an associative array slice in php
In perl, I could assign a list to multiple values in a hash, like so:
# define the hash...
my %hash = (
foo => 1,
bar => 2,
baz => 3,
);
# change foo, bar, and baz to 4, 5, and 6 …
0
votes
2answers
33 views
What is the appropriate data structure for this array in CSharp?
Hey guys, If I've got this data structure in PHP, what data structure is the best for it in C#?
$array = Array(
[dummy1] => Array (
[0] => "dffas",
[1] => "asdas2",
…
1
vote
4answers
175 views
How to write a good PHP database insert using an associative array
In PHP, I want to insert into a database using data contained in a associative array of field/value pairs.
Example:
$_fields = …
0
votes
2answers
105 views
How to use an Oracle Associative Array in a SQL query
ODP.Net exposes the ability to pass Associative Arrays as params into an Oracle stored procedure from C#. Its a nice feature unless you are trying to use the data contained within that associative …
0
votes
1answer
41 views
Flex Associative Array
User inputs a comma separated string and i d like to make a an associative array out of it as follows :
Input : 4,3,3,2,2
Output : Array{"0"=>4,"1"="3","2"=>3,"3"=>2,"4"=>2}
I can create an array by …
2
votes
4answers
51 views
Finding last pair in associative array
I'm looping through an associative array with a foreach. I'd like to be able to check if the key value pair being handled is the last so I can give it special treatment. Any ideas how I can do this …
0
votes
4answers
72 views
How do I create and add anonymous hashes to a known Hash during script execution?
I'll attempt to illustrate this with an example. Take a common example of a Hash of Hashes:
my %HoH = (
flintstones => {
lead => "fred",
pal => "barney",
},
…
0
votes
3answers
133 views
jQuery JSON Associative Array
How do I access the name of an an item in an assosiative array using jQuery.
For example how would I read "title", "link", "media", ect... in this
{
"title": "What we do in our free time...",
…
1
vote
2answers
24 views
Using associative array values from within the same array
I'm trying to access an associative array's key and value from within the same array. If I have 3 pairs in my array. Can I use the value of let's say the values of something and other within the third …
0
votes
3answers
135 views
Finding the minimum value’s key in an associative array
Hi,
In PHP, say that you have an associative array like this:
$pets = array(
"cats" => 1,
"dogs" => 2,
"fish" => 3
);
How would I find the key with the lowest value? Here, I'd …
0
votes
2answers
413 views
passing associative array of type Timestamp to oracle stored procedure
We're running into a strange error using Oracle Odp.Net (connecting to Oracle 9). The problem is illustrated by the code snippet below.
This is the error we're experiencing:
ORA-00600: internal …
0
votes
3answers
63 views
Comparing two lists with a shell script
Suppose I have two lists of numbers in files f1, f2, each number one per line. I want to see how many numbers in the first list are not in the second and vice versa. Currently I am using grep -f f2 -v …
1
vote
2answers
47 views
XML vs. Array in Flash
In manipulating data in Flash, which data format gives faster speeds in terms of searching and manipulation, XML or nested associative arrays? Meaning I currently send data in strings into the Flash …
3
votes
4answers
152 views
Can I use an stl map if I plan to use arbitrary class objects as the key?
I'm new to STL. The thing stumping me about using a map to store arbitrary objects:
std::map<MyClassObj, MyDataObject> MyMap;
is how I find objects. How would MyMap.find (MyClassObjInstance) …
1
vote
4answers
108 views
Java: What data structure to use to imitate PHP’s associative arrays?
I want a data structure that allows me to map keys to values, like PHP's associative arrays. Each key can only exist once, but a value can be mapped to any number of keys. What am I looking for? …
