Unix Technical Forum

ADO.NET ODBC "Driver sequence error"

This is a discussion on ADO.NET ODBC "Driver sequence error" within the MS SQL ODBC forums, part of the Microsoft SQL Server category; --> I'm executing a stored procedure using OdbcCommand.ExecuteScalar() method and got an ODBC SQL Server Driver "Function Sequence Error". Below ...


Go Back   Unix Technical Forum > Database Server Software > Microsoft SQL Server > MS SQL ODBC

FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 02-27-2008, 08:25 PM
Chuck
 
Posts: n/a
Default ADO.NET ODBC "Driver sequence error"

I'm executing a stored procedure using
OdbcCommand.ExecuteScalar() method and got an ODBC SQL
Server Driver "Function Sequence Error". Below are the two
sps (one generates the ODBC driver error, the other one
doesn't). Has anyone ever had a similar problem?

-- ODBC Function sequence error when executing this sp
-- On the ODBC trace file, error 50001 was returned first,
then an ODBC "Function Sequence Error" was returned.

CREATE PROC sp_Test
@TestInput int
, @TestOutput int OUT
AS

DECLARE @error int

RAISERROR 50001 'Test'
SELECT @error = @@ERROR

RETURN @error
GO





-- NO ODBC Function sequence error when executing this sp
-- The correct error passed back properly (50001)
CREATE PROC sp_Test
@TestInput int
, @TestOutput int OUT
AS
RAISERROR 50001 'Test'
GO



Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump


All times are GMT. The time now is 02:39 AM.


Powered by vBulletin® Version 3.6.5
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0
www.UnixAdminTalk.com