Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
2answers
5k views

When to use query parameters versus matrix parameters?

Query parameters: http://example.com/apples?order=random&color=blue Matrix parameters: http://example.com/apples;order=random;color=blue When should one use query parameters versus matrix ...
7
votes
1answer
85 views

Data type of $1 vs. coalesce($1)

This statement doesn't work with PostgreSQL 8.2.4 and PHP 5.2.17: pg_query_params('SELECT $1', array(1)); ERROR: could not determine data type of parameter $1 Fair enough. This is a possible ...
4
votes
3answers
240 views

Where did this Ruby parameter convention come from?

There's a piece of Ruby middleware used by Rails and other frameworks to the parse the parameters you've sent to the server into a nested Hash object. If you send these parameters to the server: ...
2
votes
2answers
64 views

Why doesn't System.Uri recognize query parameter for local file path?

I need to add some additional query information to file path as query parameter to parse path later during files processing. I though that System.Uri class can help me with this, but it looks like it ...
2
votes
1answer
61 views

JAX-RS and unknown query parameters

I have a Java client that calls a RESTEasy (JAX-RS) Java server. It is possible that some of my users may have a newer version of the client than the server. That client may call a resource on the ...
2
votes
1answer
253 views

Capture referring URL parameters w/ Javascript & Pass to Google Analytics

New to javascript. I'm trying to capture the referring url for a goal page, which has some query parameters structured like so: example.com/vehicle/?stock=12345 Once I get the query parameters, I ...
2
votes
0answers
200 views

get unnammed query parameter in jax-rs

Requests can come into the server like: http://localhost:8080/App/rest/data/?sort(+Browser) (from dojo data grid) I want to grab the ?sort(+Browser) part. The problem is that this is the key value, ...
2
votes
1answer
320 views

Is it valid to have more than one question mark in a URL?

I came across the following URL today: http://www.sfgate.com/cgi-bin/blogs/inmarin/detail??blogid=122&entry_id=64497 Notice the doubled question mark at the beginning of the query string: ...
2
votes
1answer
754 views

UriBuilder incorrectly encoding Query Parameters value?

Lets consider the following code sample where a path and single parameter are encoded... Parameter name: "param" Parameter value: "foo/bar?aaa=bbb&ccc=ddd" (happens to be a url with query ...
2
votes
1answer
462 views

How pass a parameter to IN Operator in NHibernate?

HI, I'm Trying, pass a long array for a named query (native sql) for to use in a IN STATEMENT: Like this: (...) WHERE Identificator IN (:pIdes) I tried pass my ides as long[]: ...
2
votes
2answers
3k views

JSF adding query parameters

I am using JSF and I have a backing bean method which does some processing and sets a variable 'outcome' which then decides the next page to navigate to depending on the faces-config.xml navigation ...
2
votes
1answer
122 views

Any justification for an IT policy that query parameters should not be used?

My company, which builds ad server, affiliate network, contact form and CRM software was acquired last year, and we are now in the process of reworking our technology to fit the IT policies and ...
2
votes
2answers
1k views

Passing CGI arguments to an executable in Apache on Windows

I was under the impression that I could put any old executable program in the cgi-bin directory of Apache and have it be used as a CGI script. Specifically, if I have a C# program static class ...
1
vote
1answer
87 views

support for query parameters in JAX-RS

I did the following tutorial to create a restful webservice with my mysql db http://netbeans.org/kb/docs/websvc/rest.html The basic things works fine, but now I want to extend the service ...
1
vote
1answer
44 views

how different URL's are working

I would like to ask a theoritical question about how some web sites work. As an example.Let's say that I'm in the A market on line store. I placed a case of wine in the shopping trolley, The page ...
1
vote
1answer
67 views

Check two fields access parameter query

I have a parameter query selecting information from my table based on the start date entered by the user and today's date. I want to search two fields in my table with the WHERE statement without ...
1
vote
2answers
257 views

C#: Mapping the IDataReader.GetTableSchema() and DbType Enumeration?

So, I have the following: "SELECT * FROM MyTable;" When I do the following I get the TableData back, which is useful, but still leaves some things unknown? //CommandBehavior.KeyInfo seems to ...
1
vote
3answers
2k views

how to PUT multiple query parameter in REST web service

Do anyone know how to PUT multiple query parameter in REST web service? I have write using java.My curl sample is like this: curl -X PUT ...
1
vote
2answers
167 views

DB Query no longer recognizes SQL parameters in existing application when debugging in VS2010

I just started working with an application that I inherited from someone else and I'm having some issues. The application is written in C# and runs in VS2010 against the 3.5 framework. I can't run the ...
1
vote
1answer
380 views

Magento: Set and store a global product filter

In Magento, how can layered navigation selection be kept when a new category is selected or a search is performed? Full story: We're developing a store which sells Books and eBooks. When I am ...
1
vote
1answer
892 views

Query parameters with url_for?

url_for([:edit, @post]) is working and generating /comments/123/edit. Now I need to add a query parameter, so that instead of /comments/123/edit it is /comments/123/edit?qp=asdf I tried ...
1
vote
1answer
257 views

Retrieving Photo urls from facebook graph

I am currently fetching my news feed from facebook from a call to: https://graph.facebook.com/me/home . Objects returned here have a "from" key, that has Name, ID, and sometimes category. I know that ...
1
vote
1answer
677 views

Getting User Attributes of a Logged in Liferay user

How do I get the email ID of a logged in Liferay user (from within a portlet) ? I referred to this link but to no avail.
1
vote
5answers
169 views

Is a url query parameter valid if it has no value?

Is a url like http://example.com/foo?bar valid? I'm looking for a link to something official that says one way or the other. A simple yes/no answer or anecdotal evidence won't cut it.
1
vote
2answers
3k views

use a variable for table name in mysql sproc

I'm trying to pass a table name into my mysql stored procedure to use this sproc to select off of different tables but it's not working... this is what I"m trying: CREATE PROCEDURE ...
1
vote
2answers
202 views

How to properly encode “[” and “]” in queries using Apache HttpClient?

I've got a GET method that looks like the following: GetMethod method = new GetMethod("http://host/path/?key=[\"item\",\"item\"]"); Such a path works just fine when typed directly into a browser, ...
1
vote
2answers
145 views

When to use a routing rule vs query string parameters with asp.net mvc

We're considering moving forward with a ASP.NET MVC project and the subject of routing versus parameters came up. Seeing as how you can easily set up either or a combination of both in ASP.NET MVC, ...
1
vote
3answers
4k views

My SQLParameter isn't passing NULL correctly

I have this C# webform that has has a date picker box. If the date is set to nothing (the default) I want it to pass NULL to the database. This happens inside my parametrized query. SqlParameter ...
0
votes
2answers
52 views

Hiding Query String Parameters

I have a GET action for creating records. Because the page is somewhat dynamic, I don't use a model to hold the data. I go off to do some OAuth, only to return to the create screen later on. In order ...
0
votes
1answer
57 views

Dynamic Form Building and Passing Query Parameters

I am working on a form that is generated dynamically based on some meta-data tables in my database. I create input tags with names like setting_1, setting_53, setting_22 where the number is the ...
0
votes
1answer
41 views

Arbitrary name for RESTEasy QueryParam?

Is there a way to get any query parameter without explicitly declaring its name using the @QueryParam annotation? I have a string which may have tokens like {animal}, which are then replaced by the ...
0
votes
1answer
34 views

How can I display the description value of a query parameter in a crystal report?

If I have defined a query parameter that has a translated value, i.e. the user is prompted with a list of "readable" values and these are converted into the actual value before being used in the SQL ...
0
votes
1answer
24 views

Recess Framework get parameter

I'm using the recess framework. Suppose I have a URL like this www.example.com/try.php?this=5 In recess, what do i do to access the value of parameter this ??
0
votes
0answers
39 views

ASP Parameter Update - Strange difference between a Varchar and BigInt

I was just trying to do an update on GridView in ASP 4. I have a bound gridview and in my update I say "where RefNo=@RefNo" and if I dont setup the update parameter I get an "I dont understand this ...
0
votes
3answers
25 views

Parameters in SQL Server 2008

I have a stored procedure that pulls data for a report. I'm having a problem with the parameters. I have a couple temp tables and some joins that work so I have omitted them below. The problem is this ...
0
votes
0answers
65 views

Facebook is stripping params from my URL

This is a seriously annoying issue! Sure hope someone can point me in the right direction :) I have a Facebook page, and on that page I have an app. Users can create a photo album based on their own ...
0
votes
1answer
335 views

Key value pair params handling in Backbone.js Router

I want to pass key value pairs as params to Backbone routes and want it to be deserialized to a javascript object before the mapped function is called. var MyRouter = Backbone.Router.extend({ ...
0
votes
2answers
227 views

Handle URL query parameters in Play! SQL statement?

I am testing a Ext JS application (Client Side) and Play Framework (Service Side). I am using a grid in Ext JS with pagination. The pagination part requires to send URL Query Parameters to my Play! ...
0
votes
1answer
121 views

Error While Using "Like' in VB

I have a form which takes input from the user in a TextBox to display ("contains") record/data on a grid. However, I am unable to achieve the input data thing. I have been trying to solve this for a ...
0
votes
1answer
374 views

How to generate custom sorted query string URL in Rails link_to?

When I use link_to helper in Rails 3.0.7 app with many parameters, it generates a lexicographically sorted url as probably mentioned in the to_param method for Hash in Activesupport documentation. ...
0
votes
1answer
258 views

Resteasy Common QueryParams for Some Service Calls

I'm using Resteasy's client framework and I have some methods which require authentication to the server. The authentication is achieved via a session ticket and this ticket must be included as a ...
0
votes
1answer
254 views

x, y query parameters in Rails search form

I have a search form in a Rails app that generates the following HTML <form action="/users" method="get"> <fieldset> Search by name: <input class="text" id="query" ...
0
votes
1answer
349 views

C# - Query Multiple Comma Delimited Value Search Parameters w/ String Splitter

Requirement: I have a windows application written in C# that currently will only search a .CSV file by 1 Corp value (ex: Search by Corp: 160) and I want it to search multiple Corp values seperated by ...
0
votes
1answer
509 views

How to display full URL when setting report parameters

I have a report (in SQL Server Reporting Services 2008) that has multiple parameters, but works very well. However, one of my users (my boss, of course) wants to be able to e-mail a link to the ...
0
votes
1answer
311 views

How to make Spring MVC Controller error out if given a query param that is not valid or with a different case?

Title pretty much says it all. One of the requirements of a web service I'm working on is that if a query param name is given that is either invalid or not case-exact with what's expected, it should ...
0
votes
1answer
480 views

Apache log analyzer that can handle URL parameters?

I have a web site that uses IBM Websphere Portal technology with an Apache web server inside. The content for the web site is stored in Oracle's UCM (the web content management system). When a user ...
-1
votes
2answers
251 views

MVC3 query string parameter and input field share same name

I have a queryparameter named "from" (a from date) and also a input which binds to a property named From In my ViewModel contructor i set the From property to a date... This works if the query ...
-1
votes
1answer
53 views

Parameters in a report

I am using microsoft reporting 2008 and I would like to set parameters in this report. I do not want to pull back a list that contains the same...such as year...I pull up my parameter and I have a ...
-3
votes
1answer
77 views

Multiple Text Fields With One Type Of Query Parameter in MS Access

My form has multiple Input Text Boxes. To keep it simple; I need to search the database field with user inputted text. Example: Contains the term "bus" (in text box 1) and "tracks" (in text box 2) ...