Subject Re: Embedded server
Author Adam
> Yes, this aproach is the better, but, i can do this using embedded
server ?
> I will have a lot of simultaneous connections on embedded server...
>

Gustavo,

The connection is not threadsafe, so your initial suggestion would
just leave you with access violations everywhere.

Embedded still allows an unlimited number of connections (well limited
by implementation the same as classic or superserver). The only
difference is that the connections must all come from the same process
and must all use a local connection string.

Think of it like a Superserver installation that only has the ability
to listen to connection requests from a single process.

Adam