ali yousef
ali yousef

Reputation: 87

How to Check blob size before inserting with ORACLE APEX

I need to check file size before inserting on oracle table with oracle apex, that user can not be able attach a big size file for uploading.

Thanks

Upvotes: 1

Views: 4334

Answers (1)

PKey
PKey

Reputation: 3841

How about

dbms_lob.getlength(Upload_blob);

Also take a look at this example: How to upload an image (file) into a table (BLOB)

Upvotes: 4

Related Questions