I have a database with several tables. There are several user accounts that should be able to CRUD their stuff but should never see other users information. I was planning to store the UsersID in every record he has access to and then make sure that every database call has this "criteria" implemented.
But this seems to contradict the general rules of database abstraction. Is there a better way? The users will never need to see anyone else's data. I will require users to create a login.
Thanks, Pascal