is there some way to restrict the DB-users to just be able to modify and delete content they added to the db (from the backend side)?

MySQL allows you to control user access at the database, table and column level. See Chapter 4 of the manual for full details.

Depending on your application you might be able to use this to enable the kind of access control you want.

For example, you might create a table for each user, and only give the appropriate user insert/update permissions. You could then create a global view of all of those tables so everybody can read them.

Without some more details it's hard to tell. It might be easier to roll your own access control system.

With PostgreSQL, of course, you could add a triggers on the database side to roll your own access control system on the database side :-)


In reply to Re: trying to understand (my)sql user rights/levels and advanced features by adrianh
in thread trying to understand (my)sql user rights/levels and advanced features by parasew

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.