Are database collections private and secure?
-
(This is unrelated to my other posts where I mentioned wanting to be able to interact with outside databases, like the HTTP request one)
Say I have a collection that contains columns like “password” or something else that should be private. (I would of course have the collection hidden as well so that people can’t just see other’s passwords and whatnot easier) Is this private and secure, so that only the project’s blocks can interact with the collection and not users tampering with it? I want to know so that I can decide between using this block:
or doing what I’m already doing:
(I left the password section blank because I don’t want others to know my password) -
The backend of the database is a third-party database and it is very secure. Users can only access it through our database blocks. And if you publish the project, others won’t see the source code blocks.
-
@info-creaticode ok, thank you! I’ll make sure to use those