Top "Out-parameters" questions

PHP - MySQL gets value of out parameter from a stored procedure

I have called a MySQL stored procedure from PHP using mysqli. This has one out parameter. $rs = $mysqli->query("…

php mysql out-parameters
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(…

c# list out-parameters
How to execute a Stored Procedure with RECORD TYPE as OUT parameter

This is the package specification: create or replace PACKAGE EMPLOYEE_DETAILS AS TYPE DETAILS IS RECORD( EMPLOYEE_ID NUMBER(6,0), EMPLOYEE_…

oracle stored-procedures plsql out-parameters recordtype
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 …

c# out-parameters
Is there a way to omit out parameter?

Let's assume I have a function with out parameter, however I do not need its value. Is there a way …

c# parameter-passing out-parameters
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 …

java ibatis out-parameters
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 …

stored-procedures jdbc sqlanywhere out-parameters jconnect
passing out parameter

I wrote a method with an out parameter: -(NSString *)messageDecryption:(NSString *)receivedMessage outParam:(out)messageCondent { messageCondent = [receivedMessage substringFromIndex:2]; return […

iphone objective-c out-parameters
Why doesn't 'ref' and 'out' support polymorphism?

Take the following: class A {} class B : A {} class C { C() { var b = new B(); Foo(b); Foo2(ref b); // &…

c# polymorphism out-parameters ref-parameters