The name-value tag has no wiki summary.
0
votes
2answers
58 views
How can I convert a query string to variables in PHP?
I have a string like this stored in mysql table:
?name1=value1&name2=value2&name3=value3
originally this data was only going to be used to send GET data to another script but now i find ...
0
votes
2answers
66 views
Create this string exactly in Android
I want to build 2 same products for Android and iOs.
The iOs already works, but the android doesnt, that's because of the format of the string.
in iOs this is:
NSString*jsonString = [[NSString ...
1
vote
0answers
66 views
Posting HTTPS form results in html 404 status code
I keep getting a HTML 404 reply from the server when I try to login via a httppost (https). Not sure if this is a cookie problem or something else. The code should be good as I have copied it from ...
1
vote
1answer
97 views
Parsing xml name-value fields
In my xml, I am seraching for speciffic names and want to retrieve their value.
for example i have this field:
<n0:field>
<n0:name n4:type="n3:string" ...
1
vote
1answer
323 views
Sending Name Value Pair in POST using Jersey Client
How can i pass name value pairs as body to a POST ReST Service in Jersey. Something similar to the code below using Apache Commons PostMethod
final PostMethod post = new PostMethod(url);
...
1
vote
1answer
82 views
How can I store name/value pairs in a file with Ruby where the values can be also multiline text?
How can I store name/value pairs (also called hashes) in a file with Ruby where the values can be also multiline text? Of course I want to code the most simple way.
I have seen such text files ...
1
vote
1answer
161 views
Oracle view creation from name value pair table
Folks,
I have a oracle database table which has name value pairs. A set of name value pairs is identified by row_num. Also set size may vary.
I want to create a view which converts set of name value ...
0
votes
0answers
113 views
How to link multiple Name-Value pairs to individual fields in InfoPath 2010?
I have 2 tables: Form and FormItem. The FormItem table has a FormItemID (PK), FormID (FK), Name, and Value. I'm using InfoPath 2010 with SQL Server 2008 R2 to create forms so the users can view/update ...
1
vote
1answer
912 views
HttpPost android: 500 Server error with name value pairs , 200 ok without name value pairs in url
I have been trying to follow this tutorial:http://www.androidhive.info/2012/01/android-login-and-registration-with-php-mysql-and-sqlite/. It is to create an android login app. I've read through the ...
0
votes
1answer
35 views
how can I use array in place of name value pair in a function
In the below code how can I use options array which is passed as a argument to drawOval
drawOval=function(options) {
$triangle = new Triangle({
// how can I use options array here
...
3
votes
3answers
1k 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'})
...
3
votes
3answers
247 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 ...
0
votes
2answers
196 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 ...
1
vote
2answers
97 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
2answers
684 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 ...
22
votes
9answers
6k views
How to deal with name/value pairs of function arguments in MATLAB
I have a function that takes optional arguments as name/value pairs.
function example(varargin)
% Lots of set up stuff
vargs = varargin;
nargs = length(vargs);
names = vargs(1:2:nargs);
values = ...
2
votes
2answers
926 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 ...
1
vote
5answers
664 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"
},
...
5
votes
3answers
958 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 ...
7
votes
4answers
2k 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
710 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 ...