up vote 0 down vote favorite
share [g+] share [fb]

In a project I'm starting I would like to give privileges to users based on certain conditions, eg (in a certain table):

  • can READ all rows
  • cannot WRITE to rows with id < x, but can WRITE to row >= x
  • etc...

I would like to avoid views as these conditions might change for each user (I understand I would have to create a view for each case) I would also like to avoid enforcing this on the client side, as it could easily be bypassed.

If this is not possible, what work around would you suggest?

Many thanks in advance.

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

I don't think it's possible with raw MySQL privilege system.

As long as you don't want to implement it on the client side, modifying MySQL code yourself might be your only option. After all it's open source ;)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.