Bug #21521 | # Symbols not allowed in column/table names. | ||
---|---|---|---|
Submitted: | 8 Aug 2006 20:01 | Modified: | 24 Aug 2006 10:08 |
Reporter: | Robert Hammond | Email Updates: | |
Status: | Closed | Impact on me: | |
Category: | Connector / NET | Severity: | S2 (Serious) |
Version: | 5.0.0 Alpha | OS: | Windows (Windows) |
Assigned to: | CPU Architecture: | Any |
[8 Aug 2006 20:01]
Robert Hammond
[14 Aug 2006 6:39]
Tonci Grgin
Hi Robert and thanks for your problem report. I've decided to put it into "Verified" state even though connector is alpha because: * Connector is officially released * Code works in prior released version (1.0.7) * I can't find any notes in changelog regarding this MySqlConnection conn = new MySqlConnection(); conn.ConnectionString = "DataSource=10.192.192.99;Database=test;UserID=root;Password=;PORT=3307"; conn.Open(); MySqlCommand command = new MySqlCommand(); command.CommandText = "SELECT `PO#` AS PurchaseOrderNumber, `PODate` AS OrderDate FROM `purchase orders`;"; command.CommandType = CommandType.Text; command.Connection = (MySqlConnection)conn; MySqlDataReader dr = command.ExecuteReader(); dr.Read(); << Error MessageBox.Show(dr.GetName(0)); dr.Close(); MessageBox.Show("Ready"); command.Dispose(); conn.Close();
[21 Aug 2006 16:39]
Bugs System
A patch for this bug has been committed. After review, it may be pushed to the relevant source trees for release in the next version. You can access the patch from: http://lists.mysql.com/commits/10687
[21 Aug 2006 16:42]
Bugs System
A patch for this bug has been committed. After review, it may be pushed to the relevant source trees for release in the next version. You can access the patch from: http://lists.mysql.com/commits/10688
[21 Aug 2006 16:45]
Reggie Burnett
fixed in 1.0.8 and 5.0.1
[24 Aug 2006 10:08]
MC Brown
An entry has been added to the 1.0.8 and 5.0.1 changelog.