mysql connector/net 6.0.2 beta has been released
Hi,
MySQL Connector/Net 6.0.2, a new version of the all-managed .NET driver for MySQL has been released. This is a beta release and is intended to introduce you to the new features and enhancements we are planning. This release should not be used in a production environment.
This release was quickly pushed out due to a problem that caused 6.0.1 to not register with Visual Studio correctly. We also made a small correction to a previous bug fix. SQL generated from entity framework for stored procedures will now not directly reference the schema. This allows the model to move to a different database without need of change. We had previously made this change for tables but failed to do so for procedures.
It is now available in source and binary form from [http://dev.mysql.com/downloads/connector/net/6.0.html] and mirror sites (note that not all mirror sites may be up to date at this point of time – if you can’t find this version on some mirror, please try again later or choose another download site.)
Please take this version for a test drive and let us know what works and what doesn’t.
-
#2 written by DotNetSpark 2 years ago
-
#4 written by Chris Patterson 2 years ago
-
#5 written by Criminal Background Check 2 years ago
-
#6 written by Chris 2 years ago
Hello,
I’ve just upgraded Connector.Net from 5.2.5 to 6.0.3, and my aplication now crashes. Connector.Net wants to consider a binary(16) field as a Guid.
My table definition:
CREATE TABLE `file` (
`ID` int(11) NOT NULL,
`file_name` varchar(256) COLLATE latin1_bin NOT NULL,
`signature` binary(16) DEFAULT NULL,
PRIMARY KEY (`ID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_bin;What I do:
[open Connection with no 'exotic' option, create DbDataReader, etc.]
reader.GetDataTypeName(2) ==> "BINARY(16)"
reader.GetFieldType(2).ToString() ==> "System.Guid" !!!
reader.GetBytes(2, 0, null, 0, 0) ==> MySqlException: GetBytes can only be called on binary columnsBut why on earth is it automatically trying to convert a 16-byte array into a Guid? A too fast shortcurt in 6.0.3 type recognition routine? 5.2.5 was reading this as a byte array…
-
#8 written by order food online 2 years ago
-
#9 written by Weightloss Forum 2 years ago
-
#10 written by Games For Girls 2 years ago
-
#12 written by replica Louis Vuitton handbags 2 years ago
-
#13 written by club penguin 2 years ago
-
#14 written by accident at work claim 2 years ago
-
#16 written by my blogging net 2 years ago
-
#17 written by glasses 2 years ago
-
#18 written by cash advance 2 years ago
-
#22 written by concert tickets 2 years ago
-
#24 written by Registry Cleaner 2 years ago
-
#25 written by Andy Warhol 2 years ago
-
#27 written by Pete 2 years ago
-
#28 written by Sam 2 years ago
-
#30 written by search torrents 2 years ago
-
#31 written by notebooks 2 years ago
-
#33 written by Louis vuitton handbags 2 years ago
-
Comments are closed
- Comment Feed for this Post
Didn't find any related posts :(
I don’t know enough mysql to use a beta. i think this is better suited for the pros who can go with the punches, and make fixes and adjustments on the fly. but i really apppreciate you keeping me up to date about this new tool. Thanks.