i have a question. I have a function called
fn_Sell(id integer, idCreditCard integer, description varchar)
thats an exameple, is not the all function, but i want to pass NULL, in idCreditCard, the field acepts null, but when i pass null value,
it said UNKONW kind of parameter (integer, UNKONW , varchar)
i think is cause of integer is not a null type of value.... what can i do?
y use callable statement in java, and for the second parameter i pass null
fn_Sellbut offhand I'd guess you needsomeStatement.setNull("idCreditCard", Types.INTEGER)and you are tryingsomeStatement.setInt(null)