Page 1 of 1

Blob as a Field

Posted: Fri Mar 05, 2021 9:46 am
by ernesttan1976
Hi,

Does Nubuilder support Blob as a field type?
It would allow files to be stored inside Mysql instead of externally.

Ernest

Re: Blob as a Field

Posted: Fri Mar 05, 2021 6:36 pm
by apmuthu
The input:file is available in the FastForm Builder in nuBuilderForte.

Re: Blob as a Field

Posted: Tue Mar 16, 2021 9:14 am
by ernesttan1976
Thanks Muthu, I will try it out

Re: Blob as a Field

Posted: Tue Mar 16, 2021 9:45 am
by ernesttan1976
it doesn't let me save large pdf files like less than 3 MB even.
Tried largeblob, mediumblob, blob, all failed to save.

Re: Blob as a Field

Posted: Tue Mar 16, 2021 9:49 am
by ernesttan1976
Files
nuBuilder Forte has an Upload File facility and an Input:File Object is to allow simple things like photos, pictures or logos.

Because files are converted to JSON it's not practical to use this as a general method for storing bigger files over 300 Kb.

As the conversion process can take a while.

Re: Blob as a Field

Posted: Wed Mar 17, 2021 8:23 am
by kev1n
Unless someone has a better idea, you could first upload the file to the server
and in PHP AS,insert the file into a blob field.

Re: Blob as a Field

Posted: Thu Mar 18, 2021 6:17 am
by ernesttan1976
thanks kevin, I will try