Questions tagged [input-parameters]
65 questions
2
votes
1 answer
How to capture input parameters from within stored procedure (SQL Server 2005)?
I would like to create a generic logging solution for my stored procedures, allowing me to log the values of input parameters. Currently I am doing this more or less by hand and I am very unhappy with this approach. Ideally, I would like to say…

Duncan
- 582
- 4
- 21
2
votes
4 answers
How to pass the various input parameters to a method in a class efficiently?
Below is my Interface -
public interface IClient {
public String executeSync(ClientInput input);
}
This is my Implementation of the Interface -
public class TestingClient implements IClient {
@Override
public String…
user2467545
2
votes
3 answers
Using input parameter as an optional input
Using wso2, DSS version 3.01, I am trying to have an input parameter that could be an optional parameter. A user can say, give me all the info for this specific code, or if a user does not specify any code, I want to give all the rows of data. Can…

user2872396
- 21
- 2
2
votes
1 answer
Providing input parameters from the Windows command line to a Matlab function compiled as a .exe
Hi I have used mcc to convert a Matlab function into a standalone .exe. when I run the .exe file in the windows command prompt it returns the following error:
too many input arguments // when I give two inputs which is supposed to be
the first…

user1805525
- 21
- 1
- 4
2
votes
1 answer
Finding all input parameter and the queries corresponding to those input parameter
I have Postgresql DB on my pc and I'm trying to connect different database application to Postgresql but before that(An research issue), for each application, I need to see all the input parameter and all the queries corresponding to those input…

Alex
- 117
- 8
1
vote
1 answer
Pythonic way to distinguish read-only function input parameters from mutable ones
Python doesn't seem to have a valid const qualifier per How do I create a constant in Python? What would be the most "pythonic" way for differentiating read-only / mutable function parameters? Should I just point it out in the comments?
# my_graph…

OrenIshShalom
- 5,974
- 9
- 37
- 87
1
vote
2 answers
How to choose pass value to one parameter to a MATLAB function with multiple inputs?
function [c,tc]=v_melcepst(s,fs,w,nc,p,n,inc,fl,fh)
This function has multiple input parameters, but I only want to specify the value for the nc parameter.
In Python, I can easily just do something like v_melcepst(nc=13), but I cannot find the…

Leonard
- 2,978
- 6
- 21
- 42
1
vote
2 answers
How to set default value of date input parameter in procedure if they are null?
I am having a Procedure , which is accepting fromDate and toDate input parameters I need to set default values as First date of Last month and last date of previous month respectively. I am trying to use below code, but still proper default dates…

Khushi
- 325
- 1
- 11
- 32
1
vote
2 answers
Using Azure SQL Server as Azure ML Training Service Input Parameter
I am new in Azure ML Studio and try to figure out how to use Azure SQL Server as training input parameter.
So far I could sync local data into Azure SQL database and train data and get output on Azure ML Studio.
I've deployed prediction web service…

Erhan A
- 691
- 11
- 21
1
vote
1 answer
SAPUI5 odata bind table with input parameters in controller
I need to pass dynamic valued input parameter to calculation view via Odata binding to grid table. I can get calculation view result from Odata with following…

Suman Biswas
- 169
- 3
- 7
- 20
1
vote
1 answer
Azure ML web service input parameters
I have an experiment created in Azure ML, where I have a dataset which consists of following columns:
Temperature, Timestamp, Kw_system, Powerscout etc.
I need to input a range of timestamp say, from Oct 1st to Oct 2nd and all the rows between…

Anagha
- 3,073
- 8
- 25
- 43
1
vote
3 answers
Table Name Variable in select statement in sql server
I want to use tablename variable in select statement, but it is giving error
- Must declare the table variable "@table"
alter PROCEDURE testTblName
(
@id int,
@name varchar(50)
)
AS
BEGIN
declare @table varchar(50)
declare @add varchar(150)
…

user3713775
- 168
- 3
- 4
- 14
1
vote
0 answers
How does LinkedIn script read the api_key on the script tag?
The LinkedIn Getting Started page shows the following way to include a javascript file.
My question is - how can I do this? It…

codefactor
- 1,616
- 2
- 18
- 41
1
vote
1 answer
ASP.NET Web Api Routing Failing to catch parameters
I have some routes setup in my global.asax.cs file like this:
routes.MapHttpRoute(
name: "ColorsRoute",
routeTemplate: "api/{controller}/{action}/{styleId}",
defaults: new
{
controller…

gdp
- 8,032
- 10
- 42
- 63
0
votes
4 answers
How to take PHP input parameter from URL like this www.domain.com/item/ABC123
I the want user to visit www.domain.com/item/ABC123
As you can see here ABC123 should be the input parameter
like this www.domain.com/item/?Id=ABC123
Under /item/ there is an index.php file, that will take an Id input parameter, how do I pass the…

001
- 62,807
- 94
- 230
- 350