|
From: Jiri C. (JIRA) <tr...@fi...> - 2009-01-15 14:46:11
|
[ http://tracker.firebirdsql.org/browse/DNET-204?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Jiri Cincura reopened DNET-204:
-------------------------------
This code is still failing:
using (FbConnection conn = new FbConnection(@"database=localhost:rrr.fdb;user=sysdba;password=masterkey;pooling=true"))
{
conn.Open();
using (FbCommand cmd = conn.CreateCommand())
{
cmd.CommandText = "select * from rdb$database";
using (DbDataReader reader = cmd.ExecuteReader())
{
while (reader.Read())
{ }
}
}
}
this is OK:
using (FbConnection conn = new FbConnection(@"database=localhost:rrr.fdb;user=sysdba;password=masterkey;pooling=true"))
{
conn.Open();
}
> When using connection pooling the log is filled with INET error 10054
> ---------------------------------------------------------------------
>
> Key: DNET-204
> URL: http://tracker.firebirdsql.org/browse/DNET-204
> Project: .NET Data provider
> Issue Type: Bug
> Components: ADO.NET Provider
> Affects Versions: 2.5.0 Beta 1
> Reporter: Jiri Cincura
> Assignee: Jiri Cincura
> Fix For: 2.5.0 Beta 2
>
>
> When using connection pooling the log is filled with INET error 10054
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://tracker.firebirdsql.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
|