You are not logged in.
Pages: 1
I'm trying to log in as a guest user.
TSQLAuthGroup.InitializeTable (line 19325 of SQLite3Commons.pas) creates a guest group but not a guest user like with Admin, Supervisor and User. Are guest logins handled differently?
Offline
You'll have to add yourself the guest user to the table.
It was on purpose, for security reasons.
The guest may have a void password, for instance.
But they are not handled differently, just with different rights.
As stated by the documentation:
group POST SQL Auth R Auth W Tables R Tables W
Admin Yes Yes Yes Yes Yes
Supervisor No Yes No Yes Yes
User No No No Yes Yes
Guest No No No Yes No
Offline
Pages: 1