Joseph Leo

Greenhorn
+ Follow
since Apr 13, 2004
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 Joseph Leo

Hi,
I tried to run my SQL Command,
callStmt = connection.prepareCall("call TMP1.SP_TEMP(?,?,?)");
callStmt.setInt(1, iEmp);
callStmt.setInt(2, iEmp+1);
callStmt.registerOutParameter(3, Types.REF, "PROJECT_ID_TYP2");
callStmt.execute();
But, i got an exception ....
Exception in DAO getTimesheetData : java.sql.SQLException:
ORA-06553: PLS-707: unsupported construct or internal error [2604]
SQLException: ORA-06553: PLS-707: unsupported construct or internal error [2604]
SQLState: 65000
VendorError: 6553
I'm using Oracle 8.1.7 version.
Could anyone please give me a solution for this?
Thanks in Advance for the help!
Regards,
Joseph.