Sorry, but you did not probably get the right idea of my problem.
Byt - after lets say 12 hours spent during the night on that problem, I solved it by revriting the application to the 'SQLOLEDB' provider,
adding SET NOCOUNT ON command at the start of each stored procedure which works with...
well, thanks - but it does not work exactely in the way I need if the test is like this:
CREATE PROCEDURE test @id int=0 AS
If @id>100 RAISERROR('@id>100',16,1)
I tried the same to rewrite into ODBC calls - and it works, but I do not want to rewrite all the project from ADO to ODBC - it...
I would be gratefull if someone can help me with this problem which borders me a lot:
(I simplified my solution to test procedure)
I have this stored procedure:
CREATE PROCEDURE test ( @id varchar(100))
AS
RAISERROR('Error message',15,1)
I have application written in C++ using ADO
I catch...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.