Is it possible to add tables to the repository_server db, or is this best avoided ?
Just avoid it!
But for pure curiosity: why would you like to do that?
JC
Thanks.
I have what is effectively additional user information that links a Servoy user to a record in another system. I am also creating Servoy logins from outside Servoy. Obviously I can just have another db with a table that has the Servoy user name (or ID) and this extra info, but that’s more complicated.
I guessed it would be a bad idea, just wanted to make sure.
Alan,
The repository_server can be used for user tables, but it is cleaner to keep these separate.
I would advise against doing queries against the Servoy repository tables because then you touch internal structures which may change in any release.
Rob
I don’t particularly like doing it, but I don’t have a choice, unless there is some other way that I can programmatically create Servoy users from an external application.
Alan,
Using the servoy user management is optional, you can also implement your own user management based on your own way of validating users.
Look at the security.login() and (in case of enhanced security with login solution), security.authenticate().
Rob
I have investigated using Servoy auth with login projects and it seems fairly straightforward, doing what you suggested seems like a good alternative to consider, thanks.