Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am executing a stored procedure via standard JDBC Connection using MS SQL Driver version 3.0.

I have found that when I create and insert data into a temporary table the stored procedure doesn't execute properly.

The Java code won't throw a exception, but the javax.sql.ResultSet will be null.

The point of failure in the stored procedure is when I un-comment the INSERT INTO #TBL CLM_NAME VALUES('VAL')

When I execute the statement using SQL Studio Manager it executes without hassle and the data as expected.

Has anyone come across this or know why its the case?

Initially I thought its because of the SQL driver and I still think it is?

Thanks.

share|improve this question
Can you make sure you are creating and loading the temp table and reading from it all in the same connection? – CoolBeans Jan 18 '11 at 20:20
Yes, the temporary table is created from the stored procedure I created. I only call the stored procedure from the Java code, example connect.executeQuery("{procName(?)}"). – Koekiebox Jan 18 '11 at 20:56
1  
Is the offending INSERT instruction located in the same stored procedure that creates the temporary table? – Andriy M Feb 27 '11 at 18:18
Which method do you use for calling the stored procedure? – MRalwasser Feb 27 '11 at 21:36
@Andriy M - Yes. – Koekiebox Mar 3 '11 at 14:50

2 Answers

I am also facing the same issue. In order to fix this, I am going setup a trace on my sql server and see all the statements that are being executive by the MS JDBC driver before executing the actual SP call. This should help me clear things up. Unfortunately our DBA is out today so I will have to do it tomorrow with her help. I will let u know what happens and what is the fix.

share|improve this answer
I gave up and used sub query instead of temp tables or table variables. – Chirag Nirmal Mar 9 '11 at 15:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.