The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
94 views

Why do Apple headers not have __autoreleasing for NSError** params?

Why aren’t Apple’s methods that take NSError** declared as NSError * __autoreleasing * ? The Transitioning to ARC Release Notes seems to suggest that they should be (?). For example, all the ...
1
vote
1answer
110 views

Passing an [out] array to C++ function

I have a C++\CLI managed class method that takes an out array. I want to pass this out array to the underlying C++ function that takes a vector< char >&. This C++ functions fills the array with ...
0
votes
2answers
123 views

How to create a C-language function returning two or more OUT parameters for postgresql?

I need to return two arrays of integers in a C-language function for postgresql. Afaik, the best way to return two arrays of integers in a postgresql function is to declare the function with OUT ...
0
votes
0answers
170 views

How to retrieve row ID on ADO.NET DataAdapter.InsertCommand

I'm using ADO.NET with MySQL. To insert data, I use a DataAdapter (MySqlDataAdapter) : MySqlCommand insertCommand = new MySqlCommand(@"INSERT INTO Investments (InvestmentType) ...
1
vote
1answer
324 views

JDBC exception at getting decimal out parameter of stored procedure

I'm trying to get parameter from MYSQL procedure. My proc: CREATE PROCEDURE proc(someIn INT UNSIGNED, anotherIn INT UNSIGNED, OUT x DECIMAL(10,7), ...
3
votes
3answers
74 views

Is it possible to desregard 'out' parameters?

I've got a method like this... public List<String> TestMethod(Int32 parameter, out Boolean theOutParameter) { } When I call the method, if I'm not interested in theOutParameter what would the ...
0
votes
1answer
443 views

How can i create out parameters with RAISERROR in stored procedure?

How can i create out parameters with RAISERROR in MSSQL? This id stored procedure for example: BEGIN TRY //OPERATION END TRY BEGIN CATCH DECLARE @ErrorMessage NVARCHAR(4000); DECLARE ...
0
votes
1answer
524 views

Stored Procedure Output parameter returns null

SqlParameter[] par1 = new SqlParameter[4]; par1[0] = new SqlParameter("@prefix", "TIN-CMP-"); par1[1] = new SqlParameter("@codeLength", "17"); par1[2] = new SqlParameter("@LastCode", ""); par1[3] = ...
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 ...
0
votes
3answers
235 views

usages of out parameter in conditional flow and CA1002 fxcop error

I have a xml parsing code where I am parsing multiple nodes and attributes from xml. Using short circuit, I am able to avoid if in my code because I want to continue processing only in positive case. ...
1
vote
2answers
437 views

Is it true that OUT parameter must be assigned a value in PL/SQL?

create or replace procedure ppp(ot OUT number) is begin null; end; / This works fine on being called.
2
votes
2answers
5k views

Java MyBatis stored procedure call with OUT parameters

First question: I am trying to return one OUT parameter and not a result set with annotations. First, is it even possible? If it is, how would one do this? MyBatis: 3.0.6 Database: SQL Server 2008 ...
7
votes
4answers
170 views

What's the correct term for returning something as an out parameter?

I hope this question is on topic. I was doing code review and stumbled upon the following function: bool SomeFunc(std::string& o_xxx, char& o_yyy); This function is used to retrieve the ...
0
votes
1answer
1k views

Using ouput parameter of type SYS_refcursor

In my database I have a stored procedure with an OUTPUT parameter of type SYS_REFCURSOR. The application side is wrtitten in C#. Can I assign this procedure's output parameter to a Datatable like: ...
0
votes
1answer
991 views

Out parameters in stored procedures (oracle database)

I used stored proceture in the Oracle. How can I use out parameteres of the SP in C# code? I use the following code for it: OracleSP PROCEDURE TABMPWORKREQUEST_INS(INTWORKREQUEST_ IN NUMBER, ...
1
vote
1answer
1k views

How to initialize byte array as an OUT parameter in C# before proper array length is known

I'm having trouble with a webmethod used to download a file to a calling HTTPHandler.ashx file. The handler calls the webmethod as follows: byte[] docContent; string fileType; string fileName; string ...
1
vote
1answer
260 views

iBatis generates only 6 parameters (all null), other time generates 9 parameters

I have a good insert statement which has 9 parameters, but for some reason iBatis generates only 6 for a particular object. For all other it generates 9, as it should. Could it be the fact that all ...
2
votes
1answer
119 views

Can Metro make Java webservices interoperable with WCF even if Java lacks out parameter support?

I have a WCF client that used to call a WCF method with an out parameter: int SomeMethod(out int anotherReturnValue); When reimplementing this method in a Java Webservice will I have to change this ...
3
votes
1answer
502 views

c# generic delegate with out parameter - define and call

I'm currently refactoring an existing DAL which has a facade the user calls and an inner class that does the actual work dependent upon the ADO.Net provider to use e.g. SqlProvider, and I'm trying to ...
3
votes
2answers
586 views

C# - How can I pass a reference to a function that requires an out variable?

public class Foo { public void DoFoo() { int x; var coll = TheFunc("bar", out x); } public Func<string, int, ICollection<string>> TheFunc { get; set; } } ...
3
votes
3answers
367 views

Which result pattern is best for a public API and why?

There are a few different common patterns for returning the result of a function call in public APIs. It is not obvious which is the best approach. Is there a general consensus on a best practice, ...
2
votes
4answers
1k views

PHP, PDO Stored Procedure return nothing or unchanged value

i am using php with mysql. My stored proc returns values via out parameter via Toad4MySQL but when it comes to php Pdo, it does not capture the return value. here's my code $validusername= 'x'; ...
9
votes
1answer
6k views

Fetch Oracle table type from stored procedure using JDBC

I'm trying to understand different ways of getting table data from Oracle stored procedures / functions using JDBC. The six ways are the following ones: procedure returning a schema-level table type ...
3
votes
5answers
2k views

List<T> as 'out' parameter causes an error. Why?

In this code: public bool SomeMethod(out List<Task> tasks) { var task = Task.Factory.StartNew(() => Process.Start(info)); tasks.Add(task); } I get an error, "Use of unassigned out ...
4
votes
2answers
2k views

passing out parameter

I wrote a method with an out parameter: -(NSString *)messageDecryption:(NSString *)receivedMessage outParam:(out)messageCondent { messageCondent = [receivedMessage substringFromIndex:2]; ...
0
votes
2answers
465 views

how can return two string from a method seperately without appending?

i have method that will receive a string input(with message & mode name) and the method will separate the string input in to two strings(1.message 2.mode name) according to separator. but i need ...
4
votes
2answers
3k views

Sybase IN and OUT parameters

I'm going nuts about how the Sybase JDBC driver handles stored procedures with mixed IN and OUT parameters. Check out this simple stored procedure: CREATE OR REPLACE PROCEDURE p (IN i1 INT, OUT o1 ...
0
votes
1answer
1k views

Cant call pl-sql stored procedure with OUT Parameter oracletypes.cursor

I need some help to call a Oracle Stored Procedure in Groovy and receive a ResultSet by an Output Parameter. I can call stored procedure with output parameters of other data types, but for CURSOR I ...
2
votes
4answers
2k views

BestPractices: Out parameters vs complex return types in methods

Using complex return type: Public Type TimeType hours As Integer minutes As Integer End Type Public Function ParseTimeField(time As String) As TimeType Dim timeObject As TimeType Dim ...
11
votes
3answers
1k views

Is there a way to omit out parameter?

Assume I have a function with out parameter, however I do not need its value. Is there a way to pass no actual parameter if given result will be thrown away anyway? Sorry, acutally it turned out to ...
1
vote
2answers
635 views

T-SQL - parameter assignment, data retrieval and comparison in one line - is it possible?

I want to do something like this in T-SQL, but it will return an error: DECLARE @Stock int IF(SELECT @Stock = [Stock] FROM dbo.Products WHERE [ProductID] = 1) > 5 PRINT 'Stock is good: ...
2
votes
3answers
2k views

How to create IN OUT or OUT parameters in Java

In PL/SQL (or many other languages), I can have IN OUT or OUT parameters, which are returned from a procedure. How can I achieve a similar thing in Java? I know this trick: public void method(String ...
20
votes
5answers
11k views

Is there a VB.NET equivalent of C# out parameters

Does VB.NET have a direct equivalent to C# out function parameters, where the variable passed into a function does not need to be initialised?
1
vote
3answers
542 views

Return value or out parameter for c# method that can return either a char or string?

I ran across some code during a code review that didn't seem right, but not sure the "best" way to change it. In looking for an a answer I found which is better, using a nullable or a boolean ...
11
votes
8answers
3k views

Real-world examples where C# 'out' parameters are useful?

I'm reading up on core C# programming constructs and having a hard time wrapping my head around the out parameter modifier. I know what it does by reading but am trying to think of a scenerio when I ...
3
votes
2answers
4k views

C# - how to pass 'out' parameter into lambda expression

I have a method with the following signature: private PropertyInfo getPropertyForDBField(string dbField, out string prettyName) In it, I find the associated value prettyName based on the given ...
4
votes
2answers
4k views

Problem reading out parameter from stored procedure using c#

I just come across a strange problem where i cannot retrieve the sql stored procedure out parameter value. I struck with this problem for nearly 2 hours. Code is very simple using (var con = new ...
2
votes
3answers
523 views

.NET LINQ Call Method with Out Parameters Within Query and use Out Values

I have a list of objects, which has a method that has a couple of out parameters. How do i call this method on each object, get the out parameter values and use them later on in the query, perhaps for ...
0
votes
3answers
931 views

MySql, .NET, Stored Procedures sharing the current date and time with the calling client

I'm writing a stored procedure to update a table: UPDATE st SET somedate = NOW(); The client of the SP must know the exact date and time generated by the NOW function. There are two options: 1) ...
2
votes
4answers
329 views

why can't I pass an unassigned object variable in an out parameter and then assign it

In C#, why can't I pass an unassigned object variable in an out parameter and then assign it? If I try to do this, there is a compiler error: "Local variable <xyz> cannot be declared in this ...
7
votes
5answers
1k views

C#: can 'out' parameters in functions be object properties/variables? [duplicate]

C#: can 'out' parameters in functions be object properties/variables? eg: can I call a function as follows: someFunction(x, y, out myObject.MyProperty1)
2
votes
1answer
516 views

Using TryGetValue() in LINQ?

This code works, but is inefficient because it double-lookups the ignored dictionary. How can I use the dictionary TryGetValue() method in the LINQ statement to make it more efficient? ...
9
votes
6answers
7k views

How best to implement out params in JavaScript?

I'm using Javascript with jQuery. I'd like to implement out params. In C#, it would look something like this: /* * odp the object to test * error a string that will be filled with the error ...
18
votes
6answers
418 views

In what situations are 'out' parameters useful (where 'ref' couldn't be used instead)?

As far as I can tell, the only use for out parameters is that a caller can obtain multiple return values from a single method invocation. But we can also obtain multiple result values using ref ...
2
votes
3answers
898 views

Patterns for simulating optional “out” parameters in C#?

I'm translating an API from C to C#, and one of the functions allocates a number of related objects, some of which are optional. The C version accepts several pointer parameters which are used to ...
6
votes
2answers
659 views

How can I implement the same behavior as Dictionary.TryGetValue

So, given then following code type MyClass () = let items = Dictionary<string,int>() do items.Add ("one",1) items.Add ("two",2) items.Add ("three",3) member this.TryGetValue ...
34
votes
10answers
2k views

What is bad practice when using out parameters?

Are there any principles to keep in mind when using out parameters? Or can I look at them as just a good way to let a method return multiple values? What did the language designers have in mind when ...
1
vote
4answers
4k views

How many OUTPUT parameters can we declare for a stored procedure in SQL Server?

How many OUTPUT parameters can we declare for a stored procedure in SQL Server ?
7
votes
9answers
566 views

How to avoid out parameters?

I've seen numerous arguments that using a return value is preferable to out parameters. I am convinced of the reasons why to avoid them, but I find myself unsure if I'm running into cases where it is ...
12
votes
2answers
735 views

When is the value of a C# 'out' or 'ref' parameter actually returned to the caller?

When I make an assignment to an out or ref parameter, is the value immediately assigned to the reference provided by the caller, or are the out and ref parameter values assigned to the references when ...

1 2