Questions tagged [name-value]

49 questions
1
vote
1 answer

What is Paypal's Recurring Payment Profile RPSTATE parameter?

PayPal's Recurring Payment Profile inquiry will return a string of parameters similar to any other PayPal "RESULT". Most of these are either self-evident, or are explained in the docs. I can not find any explanation of RPSTATE. I am troubleshooting…
Parapluie
  • 714
  • 1
  • 7
  • 22
1
vote
2 answers

Query that displays which attributes an instance possesses, out of a superset of attributes

I have a relational dataset in Bigquery containing two tables. The first table holds customer data +-------------+--------+ | Customer ID | Name | +-------------+--------+ | 1 | Bob | +-------------+--------+ | 2 | Jenny …
1
vote
1 answer

Variable argument pairs in MATLAB functions

I'm trying to develop a function that contains multiple arguments. To be as robust as possible, I want to be able to call my function as follows: foo( x, y, z, 'OptionalArg1', bar, 'OptionalArg2', blah, 'OptionalArg3', val ) I want my function to…
1
vote
1 answer

Function that storages variables from a list automatically, in another function

For example I'd like to storage my variables only in f() function with the function setObj(argument), whose argument is a list with a,b,c,d fields, for example. f<-function(x){ setObj(argument=x) (a+b+c+d)/4 } So I can call my variables with…
1
vote
1 answer

Making a jar that accepts names and values on command line

Relevant Links: Java: Passing combination of named and unnamed parameters to executable Jar/Main Method Passing arguments to JAR which is required by Java Interpreter I understand how to pass strings from the command line to execute my main…
1
vote
2 answers

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 available. I'm going to give the option to include…
1
vote
2 answers

Need to manipulate string data using bash

I have data being displayed on the console in the following format: "name1", "value1", "name2", "value2", "name3", "value3", ... ... I need to somehow manipulate this output so that it will be displayed in the following format: name1 :…
1
vote
1 answer

how get name-value pair when creating JSON string from using JSON boost serialization?

Before answering this question I would request all you good people here to first take a look at this output that I am getting presently. The output is fetched from a sqlite3 table SiteCode which has two columns ID and Code. Although, I go the output…
K.K
  • 401
  • 5
  • 22
1
vote
1 answer

Find/Replace in xml file, with name/value pairs

I'm trying to write a shell script which will take, as input, a set of name/value pairs and an XML file. The aim is to search within the XML file for the "name" string from the name/value pairs file (demarcated with tags), and replace the "value"…
1
vote
1 answer

Java passing multidimensional array to PHP

I tryied to find some information about this but is a bit difficult since all i found is about javascript instead of java, I want to know how i can get it in php too because i m not sure how to do it I am trying to pass an array multidimensional by…
D4rWiNS
  • 2,585
  • 5
  • 32
  • 54
1
vote
0 answers

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 another activity. I need some help. This is my…
charlie0440
  • 35
  • 1
  • 5
1
vote
1 answer

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:
Michael A
  • 5,770
  • 16
  • 75
  • 127
1
vote
1 answer

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 pair into one row in view. I hope my question is…
sigirisetti
  • 329
  • 2
  • 10
1
vote
1 answer

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 comments and it does not explicitly answer the…
Leoa
  • 1,167
  • 2
  • 14
  • 31
0
votes
2 answers

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 database table consists of name/value pairs…