Tagged Questions
The output-parameter tag has no wiki summary.
9
votes
2answers
3k views
ADO.NET calling T-SQL Stored Procedure causes a SqlTimeoutException
I have a T-SQL stored procedure with the signature
CREATE PROCEDURE MyProc
@recordCount INT OUTPUT
@param1 INT
...
When executed directly in Sql Server the procedure runs in under 5 seconds, ...
5
votes
2answers
183 views
How to get output parameters from MySQL stored procedure in Rails?
I'm trying to get a output parameter from MySQL stored procedure, let's have look a example below:
1 In mysql I created this procedure and it works.
CREATE PROCEDURE sp_name (out id int)
Begin
...
4
votes
6answers
207 views
The <Out()> Attribute. What useful purpose does is serve?
Under System.Runtime.InteropServices the <Out()> Attribute exists.
But what is it for? I would be glad if you could use the following example as base for your answers.
Shared Sub Add(ByVal x ...
3
votes
1answer
118 views
Output parameter value wrong
I am passing a value to a parameter in a Stored Procedure and also declaring it's direction as ParameterDirection.InputOutput. In the Stored Procedure, the parameter is also declared as an OUTPUT ...
3
votes
2answers
595 views
Is it bad practice to have an output parameter in a method in a WCF service?
I'm looking for reasons beyond the usual "out parameters are confusing and indicate the method is doing more than one thing"-style arguments and more about what is specifically bad about output ...
2
votes
2answers
103 views
High Traffic SQL Table intermittent Null Output Parameter
I'm getting an intermittent null value for an output parameter for a stored procedure I have. I'm wondering if it has to do with the NOLOCK inside the stored procedure. It works most of the time, ...
1
vote
1answer
94 views
PetaPoco and output parameters from stored procedures?
I'm trying to setup an output parameter using PetaPoco. I found someone using this sample online:
var ctx = new CustomDBDatabase();
var total = new SqlParameter("Total", System.Data.SqlDbType.Int);
...
1
vote
2answers
159 views
C#: Retrieve output parameter of non-parametrized stored procedure query?
I have this stored procedure
CREATE PROCEDURE [dbo].[TestProcedure]
@param1 int = 0
,@param2 int = 0
,@total_sales int = 5 OUTPUT
AS
BEGIN
SET NOCOUNT ON;
SET @total_sales = ...
1
vote
2answers
55 views
How do I get Oracle output variable data in .net
I am working with Oracle in .net using the ODP.NET. I was wondering how I get the variables from an out variable when calling a stored procedure.
What I have currently is...
using(IDataReader ...
1
vote
1answer
1k views
Output parameter in stored procedure in EF
I have an existing database with lots of complex stored procedure and I want to use those procedure through EF 4. I have done the following:
Created an EF data object. [Name Customer]
Added a Stored ...
1
vote
1answer
304 views
returning output parameter from Oracle stored proc
I am trying to set the value of the output parameter thirdPartyId, but I am getting an error saying missing or invalid option at the set thirdPartyId statement.
PROCEDURE usp_insert_user( ...
1
vote
2answers
594 views
Informix: procedure with output parameters?
I searched a lot, but couldn't find anything.. I just want to ask if there's any way to create and call a procedure (Informix) with out parameters. I know how to return one or more values (for ...
1
vote
1answer
80 views
Using LINQ calling a sproc, how can I pass a var back from a method?
I have this method which worked for a while
public string getSlotText(int slotID)
{
DataClasses1DataContext context = new DataClasses1DataContext();
var slotString = ...
1
vote
1answer
983 views
capture output parameter from stored proc in LINQ To SQL ExecuteQuery
Is it possible to get an output parameter back from the LINQ To SQL DataContext when you execute a stored procedure?
IEnumerable<Address> result =
...
1
vote
2answers
815 views
C# - Output SqlParameter uses different values then the ones given?
I have a SqlCommand which runs a stored procedure that contains two integer output parameters. Right before the SqlCommand runs I can see that the output parameters are set to the correct values, ...
1
vote
7answers
8k views
Output Parameters in Java
With a third party API I observed the following.
Instead of using,
public static string getString(){
return "Hello World";
}
it uses something like
public static void getString(String output){
...
0
votes
0answers
40 views
OpenCV kmeans, inconsistent values for output parameter best_labels
I'm using kmeans in the OpenCV C++-interface to cluster some data.
I want to use the output parameter &best_labels of cv::kmeans, but I get strange results.
When I persist that matrix to xml, the ...
0
votes
2answers
76 views
Why won't this SQL output parameter play nicely?
I have the following code. When I use breakpoints, I can see that ["@myID"].Value is a real value, such as 2467. However, I'm not able to cast that as a string for my tryParse. I've tried using "as ...
0
votes
2answers
38 views
Is there any way to disregard a SQL stored procedure's output parameters?
I have a stored procedure that performs some processing and returns a bunch of output parameters. I want to call the stored procedure just for the processing, and don't really care about the output ...
0
votes
2answers
155 views
MySQL- Stored Procs- Weirdness when trying to use an output parameter
To be honest, I'm feeling pretty stupid right now. But this simply isn't working.
Scenario
I have a stored procedure that includes an output parameter. I'm trying to SELECT a value INTO that ...
0
votes
4answers
565 views
Use stored procedure output parameter
ALTER PROCEDURE dbo.StoredProcedure8
@emp_code bigint,
@co_id bigint,
@p decimal(8,2) output
AS
SELECT @p = (select sum(tran_value) from emp_ded_ben_trans where emp_code=@emp_code and co_id=@co_id ...
0
votes
2answers
492 views
NHibernate to access Oracle stored procedure REFCURSOR and output parameter
Does the current version of NHibernate (v2.1.2) support access Oracle stored procedure output REFCURSOR in addition to an output parameter?
I can access the output refcursor fine with my code. ...
0
votes
1answer
327 views
Wrapping allocated output parameters with a scoped_ptr/array
So,
I have some code which looks like this:
byte* ar;
foo(ar) // Allocates a new[] byte array for ar
...
delete[] ar;
To make this safer, I used a scoped_array:
byte* arRaw;
...
0
votes
2answers
1k views
Reading SP with output parameters and result set in C#?
I have created a stored procedure similar to this simplified example:
CREATE PROCEDURE dbo.sp_MyStoredProcedure
@Var1 INT OUTPUT,
@Var2 DECIMAL(10,2) OUTPUT
AS
BEGIN
SET NOCOUNT ON;
...
0
votes
2answers
815 views
Using Spring's JDBC support to get output parameters
I'm using Spring's JDBC support to run SQL queries and updates on an Oracle database. I'd like to insert a row and then get the key that it was assigned (using an Oracle sequence). In normal JDBC ...