Hi,
I am working with APEX 5.1.
I have a form fild, P25_CUSTOMER_IMAGE, that has been created with these properties:
- Display As: File Browse...
- Storage Type: BLOB column specified in Item Source attribute
I wish to have a validation that checks if that BLOB if "filled", if not filed, and error shoud be returned.
I use a procedure that takes as parameter a BLOB, and checks its size using: nvl((sum(dbms_lob.getlength("BLOB variable"))),0).
But when I assign: nvl((sum(dbms_lob.getlength(:P25_CUSTOMER_IMAGE))),0), it returns me an inconsistent data type.
How can I achieve this check?
Thanks by advance for any tip.
Kind Regards