i am trying to create a quite secure web-portal with a database backend. (mysql)
i was wondering if it is possible somehow to map the users that would be created to use the system, to "real" mysql users -- the idea was to have security from the backend:
the main "surfer" would connect to the db via a user that can only read all data.
system users would connect with their username (+level) so they have read and write access to several parts.
as far as i found out, users in mysql are only used for access_control, there is generally no information which user put which entries to the DB (please correct me, if i am wrong).
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)?
this would bring a really good access-by-level aproach:
-websurfers connect to the db with a user that can just read
-system users connect with their account, can write into some parts (tables) but can just delete/mod their own added content (or maybe group content)

In reply to 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.