Sheeli Louis

Greenhorn
+ Follow
since Aug 24, 2010
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Sheeli Louis

Hi,

i have a oracle stored proc at remote location and writing JDBC code to call the SP.That sP has both IN and OUT paramsas given below

CREATE OR REPLACE TYPE UDI_LIST AS TABLE OF VARCHAR2(14)


CREATE OR REPLACE TYPE UDI_GL AS OBJECT( UDI varchar2(14),GL_RF_NO number )
CREATE OR REPLACE TYPE UDI_GL_LIST AS TABLE OF UDI_GL


this is the java code.....

am getting invalid column index error...please some one help me on this.