Mendix Store files

0
Good morning everyone, I would like to know how Mendix stores large files, for example txt in the database? What type of attribute is used?
asked
1 answers
0

Files are not stored in the database, but in a file storage, through the system.filedocument entity, or a specialization thereof. When you retrieve the file, you can find the binary contents in the 'contents' attribute of the filedocument object.

 

answered