Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
3answers
64 views

Properties or Enums or static final

When it comes to declare predefined constants in a name-value pair, I have been randomly choosing between 'java.util.Properties', 'enums' or a separate class with 'public static final' values. For ...
2
votes
3answers
48 views

Improve querying fields exist in MongoDB

I'm in progress with estimation of MongoDB for our customers. Per requirements we need associate with some entity ent variable set of name-value pairs. db.ent.insert({'a':5775, 'b':'b1'}) ...
2
votes
2answers
566 views

Converting non-delimited text into name/value pairs in Delphi

I've got a text file that arrives at my application as many lines of the following form: <row amount="192.00" store="10" transaction_date="2009-10-22T12:08:49.640" comp_name="blah ...
2
votes
2answers
360 views

Turning a hash into a string of name-value pairs

If I'm turning a ruby hash into a string of name-value pairs (to be used in HTTP params, for example), is this the best way? # Define the hash fields = {"a" => "foo", "b" => "bar"} # Turn it ...
1
vote
2answers
44 views

Any tradeoffs for putting a set of name value pairs in a single field rather than each in their own field

We have a set of user data that is made up of name/value pairs represented in a single document. We are using mongodb to store that data and are thinking to just put the document of name/value pairs ...
1
vote
5answers
174 views

javascript accessing name value pairs

I'm getting JSON name/value pairs that looks like this: { "Name":"parentid", "Value":"blah" }, { "Name":"siteid", "Value":"blah" }, ...
1
vote
4answers
680 views

What characters are allowed in an HTML attribute name?

In HTML attribute name=value pairs, what are the characters allowed for the 'name' portion? ..... Looking at some common attributes it appears that only letters (a-z and A-Z) are used, but what other ...
1
vote
2answers
568 views

Name Value pairs and fact tables

I'm working on a star schema for analysis of posted form data. The site that the form data will be posted to is actually external to the site hosting the form, so only the data in the form will be ...
0
votes
2answers
71 views

Configuration object from name value pairs

I am working on a web app that needs to store and update configurations in a database. For example, I might store user preferences like default colors, languages, preferred date formats, etc. The ...
0
votes
1answer
75 views

XSD: is there a way to build an enumeration from name/value pairs?

I would like to have an enumeration in my XSD that specifies a set of name/value pairs corresponding to error codes and associated descriptions. E.g.: 101 Syntax error 102 Illegal operation 103 ...