|
Hi
I am using sap db version
7.3.0.21
java driver version :
sapdb-jdbc-bin-7.3.0.23a.jar
sql studio version
7.3.1.0 I have a Table
CREATE
TABLE TP ( id INTEGER
, name VARCHAR(50))
It has got following values
INSERT INTO TP( id , name ) values (1 ,
'a')
INSERT INTO TP( id , name ) values (2 ,
'b')
INSERT INTO TP( id , name ) values (3 ,
'c')
INSERT INTO TP( id , name ) values (4 ,
'd')
INSERT INTO TP( id , name ) values (5 ,
'e')
I have a procedure..
CREATE DBPROC USP_TEST (IN ID3 INTEGER ) ASBEGIN SELECT * FROM TP WHERE ID > :ID3 ;END ;when I execute this procedure through sql studio (
CALL USP_TEST (1) )
It shows 'Statement successfully executed , No
result found ' . But it should get 4 rows.
same thing I tried with java. I got an
exception 'SQL Statement generates a row count '
What should be the problem ?
Thanks in advance
Regards
Naresh
|
- RE: Problem with Executing Procedure Naresh Chandak
- RE: Problem with Executing Procedure Paskamp, Marco
- Re: Problem with Executing Procedure Naresh Chandak
- RE:Problem with Executing Procedure Anhaus, Thomas
- Re: RE:Problem with Executing Procedure Naresh Chandak
- RE: Problem with Executing Procedure Andrew Pahomov
- Re: Problem with Executing Procedure Naresh Chandak
