Bug #17749 There is no char type in MySqlDbType
Submitted: 27 Feb 2006 19:54 Modified: 28 Feb 2006 23:52
Reporter: Maksim Aliseenko
Status: Closed
Category:Connector/Net Severity:S3 (Non-critical)
Version:1.0.7 OS:Microsoft Windows (Windows XP)
Assigned to: Reggie Burnett Target Version:

[27 Feb 2006 19:54] Maksim Aliseenko
Description:
When I try to get MySqlCommandBuilder.DeriveParameters method with a procedure which have
char type parameter, I throw MySqlException exception with message "Unhandled type
encountered".

How to repeat:
following code
private void addPortalInfo_Click(object sender, System.EventArgs e)
		{
			MySqlConnection conn = new MySqlConnection("SERVER = Localhost;DATABASE = test;UID =
root;PASSWORD =;");
			MySqlCommand cmd = new MySqlCommand("testProc", conn);
			cmd.CommandType = System.Data.CommandType.StoredProcedure;
			MySqlParameter[] discoveredParameters; 
			try
			{
				conn.Open();
				MySqlCommandBuilder.DeriveParameters(cmd);
				conn.Close();
			}
			catch(Exception ex)
			{
				MessageBox.Show(ex.Message);
			}
			discoveredParameters = new MySqlParameter[cmd.Parameters.Count - 1];
			cmd.Parameters.CopyTo(discoveredParameters, 0);
		}

testProc - stored procedure with char type parameter

Suggested fix:
Add char type in MySqlDbType
[28 Feb 2006 23:52] Reggie Burnett
Thank you for your bug report. This issue has been committed to our
source repository of that product and will be incorporated into the
next release.

If necessary, you can access the source repository and build the latest
available version, including the bugfix, yourself. More information 
about accessing the source trees is available at
    http://www.mysql.com/doc/en/Installing_source_tree.html

Additional info:

Fixed in 1.0.8

Fixed by renaming MySqlDbType.String to the more appropriate MySqlDbType.Char
[28 Feb 2006 23:55] 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/3284