Bug #28637 | Pooled connections are corrupted | ||
---|---|---|---|
Submitted: | 23 May 2007 23:09 | Modified: | 16 Aug 2007 7:50 |
Reporter: | Nick dAlterio | Email Updates: | |
Status: | No Feedback | Impact on me: | |
Category: | Connector / NET | Severity: | S2 (Serious) |
Version: | 5.0.7, 5.1.0 | OS: | Any |
Assigned to: | CPU Architecture: | Any | |
Tags: | ADO.NET, DataReader, pooling |
[23 May 2007 23:09]
Nick dAlterio
[25 May 2007 17:52]
Nick dAlterio
Updated severity to correct value
[12 Jul 2007 18:01]
Tonci Grgin
Thanks for your report Nick and sorry, I completely missed it.
[16 Jul 2007 7:50]
Tonci Grgin
Nick, can you please post complete test case together with DDL statements. Also, I don't see any cleanup code in your sample. Example: MySqlConnection conn = new MySqlConnection(); conn.ConnectionString = "DataSource=localhost;..."; conn.Open(); MySqlCommand cmdCreateTable = new MySqlCommand("DROP PROCEDURE IF EXISTS `test`.`SP_BUG28637`", conn); cmdCreateTable.CommandType = CommandType.Text; cmdCreateTable.CommandTimeout = 0; cmdCreateTable.ExecuteNonQuery(); cmdCreateTable.CommandText = "DROP TABLE IF EXISTS `test`.`bug28637`"; cmdCreateTable.ExecuteNonQuery(); cmdCreateTable.CommandText = "CREATE TABLE `test`.`bug28637` (" + --<cut>-- " ) ENGINE=MyISAM"; cmdCreateTable.ExecuteNonQuery(); cmdCreateTable.CommandText = ("CREATE PROCEDURE `test`.`SP_BUG28637`(" + "\n" + --<cut>-- ") \n" + "BEGIN INSERT INTO bug28637 (`ID`, NAME) VALUES (P_ID, P_NAME); END\n"); etc...
[16 Aug 2007 23:00]
Bugs System
No feedback was provided for this bug for over a month, so it is being suspended automatically. If you are able to provide the information that was originally requested, please do so and change the status of the bug back to "Open".