The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
68 views

Output last inserted primary key value from stored procedure

I'm having a bit of difficulty with this one in that I'm not sure how to do this in SQL Server. Basically, I want to insert a new row into the database, get the PK value that was just inserted (same ...
1
vote
1answer
44 views

C# SqlCommand, XmlReader and output parameter

i have a problem with receiving value of output parameter when i execute stored procedure using SqlCommand. I don't have problem with output parameter when i execute stored procedure not from C# code, ...
0
votes
1answer
46 views

How do I call stored proc in DB2 using raw SQL (LINQPad)

I have a stored procedure called MY_STORED_PROC. It has an integer input parameter and an integer output parameter. I've tried all manner of DECLAREs, BEGINs and ENDs and calls, and I've started to ...
0
votes
1answer
33 views

Multiple parameter in powershell

I have a powershell script to call the SP which is shown below $sqlTableConnection = New-Object [System.Data.SqlClient.SqlConnection]("Server=1xx.xx.xxx; Database=dbName; Integrated Security= ...
2
votes
2answers
48 views

Asynchronously invoking a method with an output parameter

Is it possible to use a TPL Task<TResult> to asynchronously invoke a thread-safe method with the following signature and retrieve the boolean return value and the output parameter? public bool ...
0
votes
0answers
81 views

C DllImport error System.AccessViolationException Attempted to read or write protected memory

I have one C DLL which I am using into C# code (.net 4.0) When I access the C method, it raises below exception System.AccessViolationException {"Attempted to read or write protected memory. This is ...
0
votes
1answer
78 views

A call to PInvoke function xxx has unbalanced the stack

I am using C DLL in C# code (.net 4.0) in a console application and facing issue. When I call the C method it raises the below exception. "A call to PInvoke function 'ProcessFilesC' has unbalanced ...
0
votes
2answers
88 views

How to print message in SQL output parameter

I have a stored procedure like below. How I can print the message in the output parameter @ErrorMsg in my aspx page. ALTER PROC [dbo].[ItemMasterIns] ( @ItemCode VARCHAR(30), @ItemDesc ...
0
votes
1answer
57 views

Unable to retrieve out params from Oracle stored procedure in C#

Here is my stored proc (made it simple to try to isolate the issue, so all I'm doing now is setting the OUT params): PROCEDURE DequeuePPLPlatformMsg ( msgType OUT VARCHAR2, ...
1
vote
3answers
681 views

What is use of varchar output parameter in stored procedure - cannot 'return @myvarchar' but can 'select @myvarchar'

xample: CREATE PROCEDURE dbo.sp_Delete (@p1 INT, @p2 VARCHAR(10) OUTPUT) AS --@p1 will have calculations done and get a value for @p2 SET @p2 = 'test' RETURN @p2 Test: DECLARE @p2 ...
0
votes
1answer
38 views

Creating a procedure that takes in a variable then returns another to the calling procedure in Excel VBA

I want to create functionality that will allow me to pass a variable to a procedure, have it open a file based on that variable, and then return the filepath into calling procedure. I have the code ...
0
votes
2answers
121 views

Passing value from int as output parameter to a int Variable using LINQ in c#

I have a stored Procedure as ALTER PROCEDURE [dbo].[customers_iu] (@intId as int, @strName as nvarchar(100), @strSname as nvarchar(100),@intInsupdt as int = 0, @intGnrtdid as int OUTPUT) AS BEGIN ...
1
vote
1answer
117 views

qt call oracle stored procedure

I am using QsqlQuery to call oracle stored procedure that uses input parameters and two output parameters The procedure executed perfectly but output parameters contains no data QSqlQuery ...
0
votes
1answer
185 views

Run a query from a stored procedure's OUTPUT parameter

The following script is intended to take a dynamically-produced SQL statement and then run it. The script will run, but it doesn't return the results that are intended, but the text of the dynamic ...
0
votes
3answers
56 views

How to us a base class in an output parameter

Say I have code like this: class B {} class D : class B {} void MakeD(int params, D** out, int* status_out); Today I call it like this: B* b; if (use_d) { D* d; MakeD(params, &d, ...
1
vote
2answers
1k views

Stored procedure output parameter returning rounded value

I'm using output parameters to return values from a stored procedure. Declaration in stored procedure is : @GrandTtl DECIMAL(19,3) OUT The SELECT query is: SET @GrandTtl = (SELECT TOP 1 ...
1
vote
5answers
494 views

List as output parameter in Java

I am trying to write a Java function which has List object as output parameter. boolean myFunction(int x, in y, List myList) { ...Do things... myList=anotherList.subList(fromIndex, toIndex); ...
0
votes
1answer
292 views

Getting a varchar back from a SQL Server 2008 Stored Procedure in a VB.net program

I'm trying to get a string (nvarchar) from a stored procedure in my VB.net program. When I run the SP in SQL Studio, it's fine, but when I try to run it in the program I get the error: Error ...
0
votes
1answer
719 views

Accessing both stored procedure output parameters AND the result set in Entity Framework?

Is there any way of accessing both a result set and output parameters from a stored procedure added in as a function import in an Entity Framework model? I am finding that if I set the return type to ...
1
vote
2answers
3k views

Return an output parameter from SQL Server via a stored procedure and c#

I am having a devil of a time getting an output value from SQL Server. Here is my stored procedure: ALTER PROCEDURE [dbo].[Insert_UnknownCustomer_Quote_Document] -- Add the parameters for the stored ...
0
votes
1answer
282 views

PHP bindParam does not seem to work with a PARAM_INT out parameter

The following is my MySQL stored procedure: DROP PROCEDURE IF EXISTS sp_authenticate; CREATE PROCEDURE sp_authenticate(IN user_name VARCHAR(50), IN password1 VARCHAR(50), OUT nmatch INT) BEGIN ...
2
votes
1answer
299 views

Access to output parameters when ObjectDataSource retrieves data from cache

I have an ObjectDataSource that it has an Output Parameter in its select method. And my ObjectDataSource is enabled caching. When ObjectDataSource retrieves data from database, I have access to ...
1
vote
1answer
332 views

googlemock matcher for output parameters

I am testing whether my class calls a method on a mocked class, with the proper argument. I have set up a basic expectation: // mListener is a mocked object // This expectation accepts any argument ...
1
vote
1answer
218 views

phpDocumentor Output Parameters

I've got a block of code which was written a while ago and I'm looking to document, but one of the functions has an output parameter - how should a phpDoc-block be written to specify that a parameter ...
0
votes
1answer
566 views

PDO output parameter error

I am using this SP, am getting both the result when using mysql workbench. CREATE PROCEDURE SP(IN _start INT,IN _end INT,INOUT _count INT) BEGIN SET _count = (SELECT COUNT(*) FROM tbl); SET ...
1
vote
1answer
1k 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); ...
0
votes
2answers
258 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 ...
1
vote
2answers
687 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 = ...
5
votes
2answers
1k 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 ...
2
votes
2answers
235 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, ...
0
votes
2answers
58 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 ...
3
votes
1answer
344 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 ...
1
vote
2answers
170 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 ...
3
votes
1answer
6k 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
933 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( ...
5
votes
6answers
495 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 ...
4
votes
2answers
3k 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 ...
0
votes
2answers
307 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 ...
1
vote
2answers
2k 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
112 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 = ...
2
votes
1answer
3k 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
4answers
2k 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 ...
1
vote
2answers
4k 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, ...
0
votes
2answers
735 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
435 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; ...
3
votes
8answers
15k 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
2answers
4k 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; ...
1
vote
2answers
1k 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 ...
14
votes
2answers
6k 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, ...