Subject Creting FB user from an application
Author nikicab_1999
Hi all,

I hope someone will be able to help me out.

-I have AppServer (multithreaded, one thread per db connection) which
is connected to a FB database.
- AppServer uses FB logins (users) as application users i.e. every
AppServer user must have FB login (USERID).

Question: How to create a FB user from the AppServer thread?
Comment: I have one user designated as SysAdmin. That user is created
as Fb user. How can I, logged in as SysAdmin:
try
CreateNewFbUser(sUserName, sPwd);
except on e: exception do
begin
if e.Message='User already exists' then show warning
and registed sUserName with AppServer database
end;

Thanks,
Nick