> HOw can i handle a nulldate value ?
> for eg:
> INSERT INTO tagihan( ID, BILL, PAYMENT, BILLDATE, BILLPAY ) VALUES (?this._field.ID, ?this._field.BILL, ?this._field.PAYMENT, ?this._field.BILLDATE, ?this._field.BILLPAY)
>
>
> when this._field.BILLDATE is empty date , it will raise an error
>
> How solve it
>
> Thx
Give a try to this ...
in your VALUES (val1,val2...) replace this._field.BILLDATE with NVL(this._field.BILLDATE,{//})
in my SELECT queries and INSERT INTO this works fine
Regards,
Tanmoy