Named parameters enable you to specify an argument for a particular parameter by associating the argument with the parameter's name rather than with the parameter's position in the parameter list.
2
votes
4answers
58 views
Dynamically adding key-arguments to method
I would like to set the default key-arguments of an instance method dynamically. For example, with
class Module(object):
def __init__(self, **kargs):
...
0
votes
3answers
55 views
Optional arguments with default value in Ruby
I would like to create a function that has optional arguments with default values
def my_function(a = nil, b=nil, c=500)
end
and call the function with the arguments I would like to specify only
...
1
vote
1answer
51 views
JOOQ SQL given 1 parameters but expected 0
I'm trying to figure out how to use JOOQ with NamedParameterJdbcTemplate. I have successfully created other queries, but I'm stuck at creating a query containing the WHERE clause. When I try to run ...
3
votes
2answers
95 views
Named Parameters and the params keyword in C# [duplicate]
I have a C# method with a variable length argument list declared using the params keyword:
public void VariableLengthParameterFunction (object firstParam,
...
2
votes
1answer
94 views
Groovy named parameters cause parameter assignments to switch--any way around this?
Groovy will collect all the named parameters into a map and pass it into a method as the first parameter. This seems neat, but after trying to make it work it seems really unusable.
So the issue is ...
0
votes
1answer
59 views
Named parameters in database functions with SQLAlchemy
I have a function in my database (Postgres) that looks like this:
create function test_f(a text default '*', b text default '+') returns text as $$
select a || ' ' || b;
$$ language sql;
...
4
votes
2answers
94 views
Guice, Settings, and Boilerplate code
I have an application that uses Guice and reads in some configuration settings from a config file. I load it like this:
@Provides @Singleton
Settings provideSettings() {
// code that loads the ...
0
votes
0answers
21 views
missing caveat when using parameter packing/unpacking?
is there any relevant difference in the implementation of the following two inheriting classes?
class Test():
def __init__(self, a=10, b=5):
self.a = a
self.b = b
class ...
2
votes
4answers
251 views
Parameter names of a function using a functional language such as F#
I have read a book called Clean code. One of the strongest messages that I took from the book is that the code must be readable. I do not understand why functional languages such as F# do not include ...
2
votes
2answers
133 views
When to use keyword arguments aka named parameters in Ruby
Ruby 2.0.0 supports keyword arguments (KA) and I wonder what the benefits/use-cases are of this feature in context of pure Ruby, especially when seen in light of the performance penalty due to the ...
1
vote
1answer
99 views
In Struts2 named variable not getting cleared when redirected to another action
I am having a weird problem when redirecting to an action from another action. In short the named variable captured in the first action (from which I am redirecting) is still preserved somehow in the ...
0
votes
2answers
276 views
Hibernate could not locate named parameter even if it exist
Hibernate Keeps detecting
org.hibernate.QueryParameterException: could not locate named parameter [name]
even though it exist. here's my hql
Query query = sess().createQuery("from UserProfile ...
0
votes
1answer
679 views
Set named parameter for Oracle dbms_scheduler job stored procedure
Is it possible to passed named arguments to for dbms_scheduler job with a type 'stored_procedure' ? I've tried this way:
-- 1) example dummy procdure
CREATE OR REPLACE PROCEDURE my_test_proc (
...
0
votes
1answer
224 views
(php) calling wsdl method using soapclient with parameter in parameter name
Hi i'm using PHP's soapclient function to call a soap webservices (with wdsl).
I know how to pass parameters to a method, but the webservice i'm using is expecting parameters in the parameter name ...
1
vote
2answers
146 views
Should I call Parameters.Clear when reusing a SqlCommand with a transation?
I'm coding a transaction manually in ADO.NET. The example I'm working from reuses the SqlCommand which seem like a fine idea.
However, I have added parameters to my command.
My question is: in the ...
3
votes
0answers
86 views
Why do Java Interface method parameters need declaration IDs? [closed]
The question sums it up.
In C++ you can declare an interface method with a parameter list of just types, but in Java you need to associate a variable name with the type. I understand that this ...
0
votes
0answers
17 views
Why does FwpsCalloutRegister0 need a device object as its first argument?
The prototype is as follows:
NTSTATUS NTAPI FwpsCalloutRegister0(IN OUT void *deviceObject, IN const
FWPS_CALLOUT0 *callout, OUT OPTIONAL UINT32 *calloutId);
The first argument is marked as ...
2
votes
5answers
63 views
how to deal with situation when function has lot of params and client code needs only change only few of them?
How to not get lost in that case ?
Example, this is a function that returns bool but takes on 10 params:
bool myFunc(bool par1 = true, bool par2 = false, bool par3 = true,
bool par4 = true /* and ...
0
votes
5answers
157 views
Can I pass arbitrary number of named parameters to function in C#?
Is there some kind of equivalent of Python's *kwargs in C#? I would like to be able to pass variable number of named arguments into functon, then get them as something Dictionary-like inside function ...
2
votes
3answers
99 views
Named parameters in method signature
In C# - Optional parameters - creates a completion to the other un-supplied parameters.
so if I write:
void Go(int a, bool isFalse = true)
and call Go(a)
it actually emit il code for Go(a, true).
...
0
votes
2answers
56 views
how to put a date in jdbc namedparameter
I have the following code:
conditions.add("mydate = str_to_date('"+date_from_user+"', '%Y-%m-%d')");
the above works fine but since I am taking input from the user and shoving it in my query I'm ...
4
votes
5answers
374 views
Does Perl support named parameters in function calls?
In my experience of languages that support the feature, programs that call functions with named parameters rather than positional parameters are easier to read and maintain.
I think Perl has this ...
1
vote
1answer
53 views
In PowerShell V2, how to have named parameters in a method on a static class?
The following didn't parse
[x.y]::z -Param1 some_value
Is this even possible?
3
votes
1answer
58 views
How do I use [] as a default value for a named function argument in python? [duplicate]
Possible Duplicate:
“Least Astonishment” in Python: The Mutable Default Argument
I have this code
class Test(object):
def __init__(self, var1=[]):
self._var1 = var1
t1 = Test()
t2 = ...
2
votes
1answer
392 views
groovy - Sql eachRow named parameters with map
I'm trying to perform select like this:
def queries = [
[
paramQuey: "",
mainQuery: "SELECT * FROM SOME_TABLE"
],
[
paramQuey: "SELECT SOME_COLUMN AS COUNT FROM ...
1
vote
3answers
390 views
Dynamic invoke of a method using named parameters in C#
We're currently using .NET 3.5 and part of our application uses dynamic invocation (using MethodBase.Invoke)
I am wondering if it is possible to mix in Named Parameters (in .NET 4) with dynamic ...
2
votes
1answer
171 views
How to use prepared statements (named parameters) on a php Class
This is my first post here. I've searched in the site, but inforutunaly no matchs.
Anyway, i want to know how to use named parameters on a class.
so the pdo basic form is something like.
$query = ...
0
votes
0answers
87 views
What is a type name for an SQL parameter?
The Spring SQL parameter source interface defines an object that can be used to support named parameters.
However, the SqlParameterSource.getTypeName(...) method is confusing to me and I always ...
1
vote
1answer
184 views
Named Parameters rather than positional for Spring MessageSource.getMessage()
we are using Spring MessageSource to build error messages in our app.
We populate our error messages like this
dobInvalid = The DOB supplied {0} is invalid
We want to use named parameters so we ...
6
votes
3answers
112 views
Evaluation order of named parameters [duplicate]
Possible Duplicate:
Are parameters evaluated in order when passed into a method?
Say I have
void foo (int x, int y)
and call it by:
foo(y: genNum(), x: genNum())
Does C# guarantee the ...
5
votes
5answers
755 views
How to define named Parameters C#
This seems like a simple question, but for some reason I can't find the answer anywhere. Basically, I'd like to be able to implement a constructor that takes NamedParameters.
By named parameters, I ...
0
votes
2answers
433 views
why my query or jpa query is not working in spring
When I run this query in my spring project it just return an error.
I tried with different methods without any result, would be very greatful if anybody can help me.
I have 3 tables: User, Role and ...
9
votes
1answer
174 views
Ocaml's named parameters
Trying to understand Ocaml's mechanism for named parameters. I understand the basics, but the doc shows an example like this:
# let f ~x ~y = x - y;;
val f : x:int -> y:int -> int = <fun>
...
6
votes
4answers
1k views
Named parameters in javascript
I find the named parameters feature in C# quite useful in some cases.
calculateBMI(70, height: 175);
What if I want this in javascript?
What I don't want is -
myFunction({ param1 : 70, param2 ...
2
votes
1answer
1k views
Is it possible to use named parameters when command type is adCmdText?
I'm trying to use named parameters with following query through Adodb.Command but no luck.
Select * From mytable Where col1 = Lower(@param1) And col2 = Upper(@param2) And col3 = @param1
The code I ...
0
votes
1answer
128 views
PostgreSQL+NHibernate -> named parameter in LIKE section
In Spring+Hibernate app im trying to use a named parameter pasend
query should sum values from xml document saved in database as text.
SELECT document_type,
...
17
votes
1answer
337 views
Forcing named arguments in C#
C# 4 introduced feature called named arguments which especially useful in scenarios like
int RegisterUser(string nameFirst, string nameLast, string nameMiddle, string email)
Is there a way to force ...
1
vote
1answer
188 views
Boost.Parameter: named template argument in combination with CRTP
Warning: longish introduction ahead needed to explain the problem. The Named Template Argument idiom first described in ch 16.1 of Vandevoorde and Josuttis can be conveniently written with the ...
11
votes
3answers
380 views
Why do we need to specify parameter name in interface?
When we create interface methods, can't we do something like in java:
void interface_method(Integer,String, /* other parameter */);
Instead I noticed that we also need to give the parameter names ...
4
votes
2answers
353 views
Should these arguments be added or removed?
When Resharper argues with itself, how does one know which persona to give more credence?
I think I have found some code that does confuse Resharper (this is apparently a very unusual case - after ...
1
vote
0answers
114 views
jdbc namedparameter doesnot supports mysql default value
I am using namedParameter to insert in table. lets say user table where active flag is defaulted to 1 in mysql and marked as NOT NULL.
What i want is if i have value for active I will set it through ...
0
votes
0answers
130 views
CakePHP 1.3 routing with named parameters
CakePHP 1.3
I'm trying to come up with a Router::connect() that will connect the following routes to their prospective controller/actions. It's the extracting of ID from the URL and converting it to ...
0
votes
1answer
207 views
cakephp default controller/action routing with pagination breaks with named parameters
I have default routing rule set:
Router::connect('/', array('controller' => 'photos', 'action' => 'index'));
when i go to
http://url.com/photos/index/page:1/limit:10/direction:desc/
...
1
vote
1answer
294 views
SQL/parameters: positional and (then) named?
While calling a procedure/function in Oracle, is there a rule for the sequence of parameters of positional and named (and default) types?
...like the positional params come first...
...or the named ...
1
vote
2answers
351 views
Why is not named parameters more used in C++?
I have designed an parameter class which allows me to write code such as:
//define parameter
typedef basic_config_param<std::string> name;
void test(config_param param) {
...
0
votes
2answers
179 views
CakePHP named paramaters in FireFox Causing issues
We have a cakephp app running on 2.0 and we seem to be having some encoding issues with Firefox.
The URL we are accessing is /newcms/core/users/index/conditions[User][group_id]:6 to apply a filter in ...
0
votes
0answers
285 views
Named Parameters PDO UPDATE
I have JS code, which is called by the form:
//////////////// About Tab
$(document).ready(function(){
$("form#FanDetail").submit(function() {
// store the values from the form input box, then ...
0
votes
2answers
137 views
IronPython: Dynamically assign python named parameters from .net's Dictionary
i want to dynamically assign parameter values coming from a .net's Dictionary instance,
like this:
def Evaluator(IEvaluator):
def Execute(self, parameters):
a = parameters['a']
b ...
3
votes
2answers
547 views
Mixing Out and Named Parameters in C#: Why Does Out Parameter Need to be Named As Well?
Short Version: A named argument following an out argument gives a compiler error, but I cannot find any support for this behaviour in the language specification.
Long Version:
I'm using the ...
14
votes
4answers
4k views
No named parameters in Ruby?
This is so simple that I can't believe it caught me.
def meth(id, options = "options", scope = "scope")
puts options
end
meth(1, scope = "meh")
-> "meh"
I tend to use hashes for argument ...

