Hello:
> Is it correct that the embedded server only accepts one connection?
> How will this work with .NET Provider connection pooling?
I have done a little test on this, opening 10 connections without
problem, the code (i think it's correct, the connection string is always
the same):
FbConnection[] connections = new FbConnection[10];
for (int i = 0; i < connections.Length; i++)
{
connections[i] = new FbConnection(connectionString);
connections[i].Open();
}
for (int i = 0; i < connections.Length; i++)
{
connections[i].Close();
}
--
Best regards
Carlos Guzmán Álvarez
Vigo-Spain
|