SQL Server :: DAL Doesn't Return The Return Value Of Stored Procedure?

Nov 8, 2010

I have an update function in my data layer which is defined as:

public int UpdateRBTable(parameters ...) This calls a SQL Server Stored Procedure to perform an update function on the database.

The process does its job for updating the table. However, the stored procedure has a return value (which indicates how many rows were updated), but this return value is not returned to the application. The application always shows that a zero was returned from the stored procedure.

View 3 Replies


Similar Messages:

SQL Server :: How To Get The Return Value From Stored Procedure

Sep 14, 2010

I not getting the return value from stored procedure that I have written so how to get that plzz its urgent I have return the procedure as ALTER PROCEDURE [dbo].[sp_AddPaySlip]

View 2 Replies

SQL Server :: How To Return Strings From Stored Procedure

Jun 11, 2010

Long story short, it would be a lot easier for me to just return two values (from a many-column table, like combining columns) than to combine them in my asp project. I'm just having many problems with binding to a dropdownlist, and it would be easier not having to guess what index the column is I need :)

So, let's just say my table, "Building", has 5 columns - BuildingID, PracticeID, PracticeName, Address, & Zip (there are many more in my real table).

I already have a stored procedure that is "SELECT * FROM Building ORDER BY PracticeName". What I would like, is something that returns column values together with literal characters, like:

PracticeID - PracticeName (Address) AS First

I know I could use "SELECT PracticeName AS Name FROM Building" to simply change the name of the column I'd receive, but I want to add literal characters ( "-" and "(" and ")" and " ") with specific columns I choose.

Since I have about 20 columns in my table and I only want about 6, I don't need to SELECT *, but only those 6. That's easy enough. But since I would still like these six columns combined, I'm not sure what to do.

Again, what I want is to return something like:

PracticeID - PracticeName (Address) AS First BuildingID - Zip AS Second the "-" and "()" and " " need to be included and returned from SQL, not when I retrieve them)

View 4 Replies

SQL Server :: Stored Procedure Doesn't Return Value

Oct 24, 2010

In my asp.net page I pass paremeters to a stored procedure and then inside a try blog the foloving line: affectedRows = ssqldbsorce.insert

never returns expected result from stored procedure.

Inside stored procedure event if I explicitely write the following line "return 5" for example, it never returns 5, only -1, 1, 2

For example here a very simple one without output parameters(I still should be able to return a value without output parameters, right?):

ALTER PROCEDURE [dbo].[createUser]
@regCode varchar(10)
AS
SELECT * FROM dbo.reg_code WHERE reg_code=@regCode
....
---other statements, and for the sake of the example lets return 5
RETURN 5

Is there something wrong with doing it thi way, here is also a tutorial, according to which it should work just fine: [URL]

Is there another way maybe in the assp.net page to capture the value in the variable from a stored procedure.

View 15 Replies

SQL Server :: Handling Return Values Of Stored Procedure

Feb 16, 2011

While using an insert query for a certain table, can I used a select statement to know whether there's an already existing value in the stored procedure using a return value where insert occurs? Or do I need to separate a procedure?

View 9 Replies

SQL Server :: Changing The ImageUrl Based On A SQL Stored Procedure Return Value?

Nov 16, 2010

I am realitivly new to c# and I am trying to do something that is probably simple, but I might just be over thinking it.What I want to do is have an image change based on a return of a sql data call. I am using a stored procedure that reads values and uses a case to switch between red, yellow, green for status. For example, I have nine items that the SP goes through and returns one of the colors. What I would need is if it detects a red, change the image to red and so forth. Now, when I execute the SP in C# I can get the data but it always just reads the last value. So if it had a red in there and the next one is a green, it uses the green. I even thought about reading the colors and using an IF statement adding the values to determine which color should be used.

[Code]....

View 10 Replies

DataSource Controls :: How To Return Multiple Output Parameter From Sql Server Stored Procedure

May 5, 2010

i want to return two output parameter n temp table from sql server stored procedure

View 6 Replies

SQL Server :: Stored Procedure - Looping Into Multiple SELECT Statements To Return Single Value?

Jan 3, 2011

When can I use Stored Procedure? Is this useful for looping into multiple SELECT statements to return single value? How? Can anyone post some sample codes? I have text query and notice that my web application is slow and want to find ways to speed it up. Is there any possible ways aside from Stored Procedures?

View 4 Replies

ADO.NET :: Stored Procedure With The Return Value?

Feb 10, 2011

I have a stored procedure with 6 input parameter and 4 output parameter. In My asp.net - C# code I execute the stored procedure and return the parameter, first of all it gave me this error :

Procedure or function w_create_order has too many arguments specified. That I'm not sure why is that because the number of parameters is right, the only thing is may be the way that I used is not right.

Second, I would like to show the parameter in the label control in my page, I'm not sure how to do this.

[Code].....

View 5 Replies

ADO.NET :: How To Return Value In Stored Procedure

Feb 10, 2011

I have a stored procedure with 6 input parameter and 4 output parameter. In My asp.net - C# code I execute the stored procedure and return the parameter. Stored procedure executed correctly, but the return values are empty. I would like to show the return value on the page. Stored procedure works fine and return value in sql manager.

This is my code:

SqlCommand cmd = new SqlCommand("w_create_order", connection);
cmd.CommandType = CommandType.StoredProcedure;
//input parameters
cmd.Parameters.AddWithValue("@in_order_class", "WEB");
cmd.Parameters.AddWithValue("@in_owner_code", "OP");
cmd.Parameters.AddWithValue("@in_sales_campaign_code", "DEF");
cmd.Parameters.AddWithValue("@in_cus_key", null);
cmd.Parameters.AddWithValue("@in_lab_key", null);
cmd.Parameters.AddWithValue("@in_invoice_number", null);
connection.Open();
cmd.ExecuteNonQuery();
//output parameters
//output parameters
cmd.Parameters.Add("@ord_key", SqlDbType.Int, 500);
cmd.Parameters["@ord_key"].Direction = ParameterDirection.Output;
cmd.Parameters.Add("@ord_invoice_number", SqlDbType.Int, 500);
cmd.Parameters["@ord_invoice_number"].Direction = ParameterDirection.Output;
cmd.Parameters.Add("@via_ship_via_code", SqlDbType.NVarChar, 500);
cmd.Parameters["@via_ship_via_code"].Direction = ParameterDirection.Output;
string message = (string)cmd.Parameters["@via_ship_via_code"].Value;
cmd.Parameters.Add("@ord_ship_after_date", SqlDbType.DateTime);
cmd.Parameters["@ord_ship_after_date"].Direction = ParameterDirection.Output;
Label1.Text = message;
connection.Close();

View 2 Replies

ADO.NET :: Return A String Value From Stored Procedure

Mar 19, 2011

I'm having a hard time to return a string value. I usually do this by passing an int, which works just fine. Now, I need to pass a string but couldn't. Is this possible? Or int is only type that SQL can return?

View 11 Replies

Databases :: How To Return A Value From A Stored Procedure

Jan 5, 2010

i have a stored procedure and i want to return a value from that procedure and returned value i want to store in a variable Stored Procedure is create procedure simpleproc(OUT pcount int)begin set @pcount=(select count(*) from testtable); end

Now i call this proc from C# code

string query="CALL simpleproc(@count)";
MySqlCommand commond = new MySqlCommand();
MySqlParameter returnValue = new MySqlParameter("@count", DbType.Int32);
returnValue.Direction = ParameterDirection.ReturnValue;
commond.Parameters.Add(returnValue);
commond.CommandText = query;
commond.Connection = con; // I already set the connection in con and opened it
commond.ExecuteNonQuery();
int count = Int32.Parse(command.Parameters["@count"].Value.ToString());

What should i have to change to get return value in count

View 4 Replies

C# - Return Value From Stored Procedure Get First Character Only?

Mar 7, 2011

when getting return value from stored procedure, return value only first character, Exec sp_Auto_Gen_TTBDBatNo 'TT', '' in sql server get whole string but in asp.net get first character how to get the whole string value?

CREATE PROC sp_Auto_Gen_TTBDBatNo
@Prefix nvarchar(2),
@Result nvarchar(8) output
AS
BEGIN
DECLARE @LastValue int
-- CompanyCode = @CompanyCode AND BankCode = @BankCode AND AccountCode = @AccountCode
SET NOCOUNT ON
If @Prefix = 'BD'
SELECT @LastValue = MAX(RIGHT(RTRIM(ISNULL(BatchNo, '')),2)) from dbo.Cheque_IssueRecord_Secretary_Review_BD WHERE ISNUMERIC(RIGHT(RTRIM(BatchNo),2))= 1 AND LEN(RIGHT(RTRIM(BatchNo),2)) = 2
ELSE
SELECT @LastValue = MAX(RIGHT(RTRIM(ISNULL(BatchNo, '')),2)) from dbo.Cheque_IssueRecord_Secretary_Review_TT WHERE ISNUMERIC(RIGHT(RTRIM(BatchNo),2))= 1 AND LEN(RIGHT(RTRIM(BatchNo),2)) = 2
SET NOCOUNT OFF
set @Result = @Prefix + RIGHT(RTRIM(STR(year(getdate()))),2)+RIGHT('0'+LTRIM(RTRIM(STR(month(getdate())))),2) + RIGHT('0'+LTRIM(RTRIM(STR(ISNULL(@LastValue,0)+1))),2)
print @Result
END
C# code:...........................

View 3 Replies

Databases :: How To Return A Table Through A Stored Procedure

Mar 24, 2010

I'm not so familiar with stored procedures but I'm interesting in moving most of my web selects to stored procedures. I'm working with .net based website and all my data access is something like this:

[Code]....

But now I want to improve some process and make tunings. For that I want to use stored procedures, so instead of the "SELECT ...." sentence I'll put stored procedure name. My problem is how to return a table from one.

View 3 Replies

ADO.NET :: Manually Set Return Type For Stored Procedure?

Dec 8, 2010

I have this storde procedure that I add to my dbml file, when I do that it does not recognize the return type. The return type is a string, how do I set that it should be a string?

View 6 Replies

Execute Stored Procedure Using Sqldatasource And Get Return Value In Vb.net?

Sep 15, 2010

How can I execute a stored procedure using sqldatasource and get the return value in vb.net.

View 2 Replies

DataSource Controls :: How To Retrieve The Return Value From Stored Procedure

Jun 16, 2010

i want to retrieve the return value of following stored procedure in my Data Access Layer of ASP

CREATE PROCEDURE Procedure_login

View 3 Replies

DataSource Controls :: Return Value From Stored Procedure To C# Code Behind?

Mar 16, 2010

So I am getting this error message:

Cannot implicitly convert type 'System.Data.SqlClient.SqlParameter' to 'string' I have a stored procedure on SQL 2000 returning an email from a database table (aspnet_Membership). The email type from the table is nvarchar. I have a method (in C# in the code behind) that gets that value. But the debugger doesn't like the last line:

return returnEmail; // returnEmail is a string variable we created to capture the stored procedure's return value

I've tried doing returnEmail.toString() in several places, but still get the same error message for the last line of code (returning the email).

This is the stored procedure:

View 3 Replies

DataSource Controls :: How To Return Variables From Stored Procedure

Feb 1, 2010

I have a stored procedure which returns a value to state if the userlogin is valid. but i want to return the data and store it in a data session as i will require the user details in the checkout page.

is it best to get individual parameters out of the stored procedure then assign the variables to a datatable which is then assigned to session Or how can i get all the details returned from the stored procedure for the table? not sure which would be the most effective solution?

View 9 Replies

DataSource Controls :: How To Check The Return Code Of A Stored Procedure

Mar 24, 2010

When it is bound to a datagrid. I do a grdELTCompletions.DataBind() and it shows that it's SELECTING, but returns nothing. I can execute the SP in MS SQL and it works fine. I just need know what elements of either the datasoure (sql to execute the SP) or the datagrid to find the error. Or even if there is a SQL log I can look at..

View 6 Replies

DataSource Controls :: Syntax Error When Getting Return Value In C# Asp From Stored Procedure

Feb 26, 2010

I am having syntax issues with in my attemto to get a return value from a stored proc. The s/proc code is Select @@Identity My c# code is:

[Code]....

The next line in the code is where I need to assign the return value from the stored proc to a variable;

View 5 Replies

DataSource Controls :: Why Does Sqldatasource Not Return Data From Stored Procedure

Jun 8, 2010

i have a grid bound to sqldatasource control which gets its data from stored procedure. in page load event i code a dropdownlist where i take the selectedvalue parameter for the parameter query. only when a second dependant dropdownlist is selected (coded in dropdownlist1 selected event)is data returned ?

View 12 Replies

DataSource Controls :: Return Multiple Values From Stored Procedure?

Jun 2, 2010

Is it possible to return multiple values from a stored procedure? Basically, if I execute the stored proc on the C# side, then on the SQL side I do multiple calculations. Let's say I have 5 int values I need returned to the C# side.

View 4 Replies

DataSource Controls :: Call The Stored Procedure And For It To Return A True Or False?

Aug 4, 2010

Am stuck with this sql stored procedure/asp.net vb.

I want to call the stored procedure and for it to return a true or false if successful ie username and password match.

My stored procedure works fine, and I can call it from my vb, however I stuck as to how I get it to return a result of true or false, 1 , 0. I just get a blank page.

My Codebehind (asp.net vb):

[Code]....

View 1 Replies

Forms Data Controls :: Dynamic Gridview Show As Stored Procedure Return?

Mar 5, 2010

I am trying to show gridview as Stored procedure results sent.

[code]....

page is displaying with Edit and deleti buttons with no. of rows. But not result set (no data).

View 3 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved