Tagged Questions

0
votes
1answer
18 views

SQL Server - Selecting records with specific, multiple entries in an associative table

I’m working in SQL Server with the following sample problem. Brandon prefers PC’s and Macs, Sue prefers PC’s only, and Alan Prefers Macs. The data would be represented something li …
1
vote
2answers
181 views

How can I convert a PHP function’s parameter list to an associative array?

I want to convert the arguments to a function into an associative array with keys equal to the parameter variable names, and values equal to the parameter values. PHP: function …
2
votes
1answer
137 views

*FIXED* Good with PHP arrays? HELP!

I know there are a lot of smart people, so prove me right! I want to combine arrays where similar named keys merge together to form a single array. See example: [Bob] => Array …
0
votes
1answer
126 views

Change an associative array into an indexed array / get an Zend_Table_Row_Abstract as non-associative

Hi out there in Stackland. I was wondering if there was either a function or an easy way to change an associative array into an indexed array. To elaborate, I'm using the Zend fr …
1
vote
2answers
140 views

ASP print out array

Hi all, I would like to print out the data, for debugging purpose. Data format would be like this cntryCode = resArray("COUNTRYCODE") business = resArray("BUSINESS") ' Payer' …
4
votes
5answers
465 views

javascript array associative AND indexed?

can an array in JS be associative AND indexed? I'd like to be able to lookup an item in the array by its position or a key value.. possible?
1
vote
2answers
441 views

Compare two Arrays Javascript - Associative

Hi, I have searched on here for a quality method to compare associative arrays in javascript. The only decent solution I have found is the PHP.JS project which has some comparative …
1
vote
1answer
585 views

Oracle Associative Array TYPE is not able to use in USING statement (If TYPE is declared within Package)

Hi All, If 'Associative Array variable' is declared globally, able to use that in OPEN CURSOR USING statement. If 'Associative Array variable' is declared within package, while …
8
votes
3answers
3k views

How do I remove objects from a javascript associative array>

var myArray = new Object(); myArray["firstname"] = "Bob"; myArray["lastname"] = "Smith"; myArray["age"] = 25; Now if I wanted to remove "lastname"?....is there some equivalent of …
3
votes
4answers
592 views

How are associative arrays implemented in PHP?

Can someone explain how PHP implements associative arrays? What underlying data structure does PHP use? Does PHP hash the key and store it in some kind of hash map? I am curious be …
2
votes
3answers
451 views

What is the most efficient way to get the first item from an associative array in JavaScript?

I need to get just the first item (actually, just the first key) off a rather large associative array in JavaScript. Here's how I'm doing it currently (using jQuery): getKey = fun …
4
votes
2answers
357 views

How do I append to an alist in scheme?

Adding an element to the head of an alist (Associative list) is simple enough: > (cons '(ding . 53) '((foo . 42) (bar . 27))) ((ding . 53) (foo . 42) (bar . 27)) Appending to …