Tagged Questions

1
vote
3answers
32 views

PL SQL - Return SQLCODE as OUT parameter is accepted ?

Hi, I have a procedure that returns an OUT parameter. procedure foo (in_v IN INTEGER, out_v OUT integer) BEGIN ... EXCEPTION WHEN OTHERS THEN --sh*t happend out_v := SQLCODE; END That …
1
vote
2answers
33 views

How to reflect on method with out params?

I am trying to get a MethodInfo object for a method on a type with an out param in its signature. Something to the effect of this: MethodInfo tryParse = typeof(T).GetMethod( "TryParse", …
1
vote
3answers
122 views

C#: How to use generic method with “out” variable

I want to create a simple generic function void Assign<T>(out T result) { Type type = typeof(T); if (type.Name == "String") { // result = "hello"; } else if (type.Name == …
4
votes
3answers
160 views

Why is an out parameter not allowed within an anonymous method?

This is not a dupe of Calling a method with ref or out parameters from an anonymous method I am wondering why out parameters are not allowed within anonymous methods. Not allowing ref parameters …
0
votes
1answer
46 views

XPConnect (Firefox) - how to get value out of object

I'm trying to create a read from clipboard javascript function, and it's generally working, but I can't seem to extract the actual string from the object I create with the out parameter …
0
votes
2answers
210 views

ibatis in/out parameter problem

Can anyone tell me what's wrong? I have two procedures and two mappings for them. One works fine and another fails. This one works fine: <parameterMap id="mapping-descriptions" …
3
votes
4answers
149 views

Code analysis comes back with suggestion about not using “out” parameters

I ran the VS 2008 code analysis tool against an object I created and received the following suggestion ... Warning 147 CA1021 : Microsoft.Design : Consider a design that does not require that …
1
vote
3answers
625 views

SubSonic: retrieving value of stored procedure OUT parameters

I love your tool. I have been using it a lot, but just today I ran into a problem... I wrote a stored procedure that returns some values via OUT parameters, but SubSonic does not seem to generate the …
1
vote
2answers
39 views

How should I check that [out] params in COM can be used?

Officially one should not use [out] parameters from COM functions unless the function succeeded this means that there are (at least) three ways to see if an [out] parameter can be used. Consider the …
2
votes
4answers
84 views

Should out params be set even if COM function fails?

When implementing a COM interface I always assign to the out parameters on success but should I do so also on error? HRESULT CDemo::Div(/*[in]*/ LONG a, /*[in]*/LONG b, /*[out,retval]*/ LONG* pRet) { …
3
votes
3answers
484 views

C# Out parameter question: How does Out handle value types?

UPDATE So totally pulled a tool moment. I really meant by reference versus Out/Ref. Anything that says 'ref' I really meant by reference as in SomeMethod(Object someObject) Versus …
1
vote
2answers
325 views

How to circumvent using an out parameter in an anonymous method block

The following method does not compile. Visual Studio warns "An out parameter may not be used within an anonymous method". The WithReaderLock(Proc action) method takes a delegate void Proc(). public …