0
votes
2answers
19 views
Mutually exclusive powershell parameters
SCENARIO
I'm writing a cmdlet for Powershell 2.0 using Visual Studio 2008 and .NET 3.5
the cmdlet requires 3 arguments.
my intended grammar of the cmdlet is something like thi …
1
vote
7answers
246 views
Can i do this in Java?
Hi.
Sorry if this sounds like a newbie question, but the other day a Java developer mentioned about passing a paramter by reference (by which it was ment just pass a Reference obj …
0
votes
4answers
66 views
Java generics: multiple generic parameters?
Hello, I was wondering if it's possible to write a function that accepts multiple generic types as follows:
public int void myfunction(Set<T> a, Set<T> b) {
return …
2
votes
1answer
83 views
+100
Calling functions with parameters using SOAP with Perl
I am attempting to access a web service using SOAP through Perl and am having issues calling the service's functions that require parameters. The XSD that dictates the SOAP call sa …
1
vote
5answers
105 views
How do I write a generic method that takes different types as parameters?
I have the following extension method to add the elements in one collection to another collection:
public static void AddRange<T>(this ICollection<T> collection, IEnum …
0
votes
2answers
49 views
Unfortunately this works: ROR Comparison in Activerecord - update.
Unfortunately this mess works: Do you have suggestings for cleaning up this code: I'm trying to use a activerecord to compare two table columns, "needed" and "amount" then update a …
0
votes
1answer
19 views
Elegant way building url request with parameters
There must me a more elegant way to build a URL with parameters in .NET then for example
Response.Write("<a href=HeadOfMarketView.aspx"+Session["HOM"] != null ? Session["HOM"]+ …
0
votes
0answers
11 views
How can I get the date format from an SSRS report from the web service interface?
I get report params in C# code from the webservice as follows:
ReportingService2005 ReportingService = ConnectToSSRS();
ReportParameter[] ReportParams = ReportingService.GetReport …
1
vote
0answers
14 views
How can an MSI prompt the user for parameters to configure an MSM?
I have an application BACK which is packaged in an Merge Module, and installed with another application FRONT which is in the main MSI package. These are created via projects in M …
0
votes
3answers
43 views
Extending a stored procedure (adding a single part to it) by using a parameter in SQL Server
I have a 200 line long stored procedure, which gets a parameter 'prmtr',
What I want to do is add an "sql part" to my stored procedure, according to my parameter.
example:
SELEC …
1
vote
2answers
32 views
Weird behaviour of h:commandLink action (MethodExpression)
Hey there,
I have two JSPs where I am displaying some info from database in a h:dataTable. One of them is showing all the info, and one of them user specifically.
I have showXML.j …
1
vote
3answers
51 views
Handle uninitialized parameters in java?
I'm calling a Java method from another language (R). Some of the parameters are optional in my R function. What's the best way to handle uninitialized parameters in a Java method …
1
vote
4answers
101 views
Can method parameters be dynamic in C#
In c# 4.0, are dynamic method parameters possible, like in the following code?
public string MakeItQuack(dynamic duck)
{
string quack = duck.Quack();
return quack;
}
I've ma …
0
votes
1answer
23 views
Output parameter for TABLE OF VARCHAR2 Oracle odp.net
Hi all,
I have this type:
TYPE tipo_TableVarchar2 IS TABLE OF VARCHAR2(1000) INDEX BY BINARY_INTEGER;
and procedure procedure get_array (p_arr out TableVarchar2 ) is ...
Oracle …
0
votes
6answers
73 views
using parameter in SQL with LIKE keyword
Hi folks,
from my C#-programm, I access a SQL Server 2008 Database. I have a table with a fulltextindex and want to search for an indexed entry:
SELECT page_id FROM page_categori …
