Hi,
How can I resolve the compilation error :
INSERT INTO Paiement VALUES(seq_noPaiement.nextval, noLiv, myDate);
dbms_output.put_line('NoPaiement : ' || seq_noPaiement.currval);
The error occurs when I do the put_line with seq_noPaiement.currval...
I also tried to do this :
myVar := seq_noPaiement.nextval;
INSERT INTO Paiement VALUES (myVar, noLiv, myDate);
dbms_output.put_line('NoPaiement : ' || myVar);
But it didn't work too...
So I don't have any idea about how to resolve this ... ???
Thansk,
Eric
