0
votes
2answers
32 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
vote
4answers
159 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 = array('field1'=>'value1','field2'=>'value2',' …
0
votes
1answer
34 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 …
0
votes
2answers
99 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 …
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 ot …
2
votes
4answers
50 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 …
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 => "barn …
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 stri …
0
votes
3answers
127 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 …
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 …
0
votes
3answers
134 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 low …
0
votes
2answers
408 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- …
-2
votes
1answer
82 views
How to build a tree structure from associative array [closed]
Hello
Anybody know how to convert one-dimension associative array with parent connection to x-dimensions array tree structure view?
1
vote
4answers
107 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 …
0
votes
4answers
52 views
convert associate array to XML in php
How do i convert an associate array to an XML string? I found this but get the error 'Call to a member function addChild() on a non-object' when running the line
$node = $xml-> …
