1
vote
4answers
119 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
2answers
81 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 …
0
votes
1answer
28 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 …
2
votes
4answers
48 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
68 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 …
0
votes
3answers
118 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 …
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 …
0
votes
3answers
128 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
379 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- …
0
votes
3answers
59 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 …
1
vote
2answers
42 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 …
3
votes
4answers
147 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 …
1
vote
4answers
105 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 …
2
votes
3answers
59 views
Add an associated pair to a PHP array
I have an array, i tried writing
array_push($json['Request']['Header'], "key" => "val");
but i received an error. Writing the below works but it adds an array instead of just …
0
votes
4answers
49 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-> …
