set serveroutput on;
cursor emp_cursor is select orderline.orderid, sum(product.productstandardprice * orderline.orderedquantity) AS price from orderline, Product WHERE orderline.Productid = Product.Productid group by orderline.orderid; open emp_curs
; SQL state [99999]; error code [17041]; Missing IN or OUT parameter at index:: 2; nested exception isjava.sql.SQLException: Missing IN or OUT parameter at index:: 2 PROCEDURE set_user_details(IDNUMBER DEFAULT -1) BEGIN
//
E
strInsertQuery="INSERT INTO SYNPACKAGEFREEUSAGEMAPPING (PACKAGEID,SERVICEID,PRIORITY,MAPPINGID,ATTRIBUTEVALUE,FREEUSAGE,UOM,PARAMSTR1,UNITCREDITPOLICYDETAILID) VALUES (?,?,?,?,?,?,?,?,?)";newPstmt.setString(1,strProductId);
new