Posts tagged C#
MySQL Connector/Net 6.3.2 beta has been released
- Visual Studio 2010 RTM support
- New sql editor. Create a new file with a .mysql extension to see it in action
MySQL Connector/Net 6.1.4 has been released
MySQL Connector/Net 6.1.4, a new version of the all-managed .NET driver for MySQL has been released. This is our latest GA release and is suitable for use in all scenarios against servers ranging from version 4.1 to 5.5!
It is now available in source and binary form from [http://dev.mysql.com/downloads/connector/net/6.1.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.)
This is a maintenance release and includes many bug fixes. Please review the change log for details.
Thank you for using our product!
MySQL Connector/Net 6.0.6 has been released
MySQL Connector/Net 6.0.6, a new version of the all-managed .NET driver for MySQL has been released. This is a maintenance release and is approved for use in all situations.
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.)
There are lots of bug fixes in this release so please review the changelog.
Thank you!
MySQL Connector/Net 6.3 Alpha 2 has been released
MySQL Connector/Net 6.3.1, a new version of the all-managed .NET driver
for MySQL has been released. This is an alpha 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.
It is now available in source and binary form from
[http://dev.mysql.com/downloads/connector/net/6.3.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.)
The new features or changes in this release are:
- Visual Studio 2010 RC support
- Nested transaction scope support
What we know may be broken
—————————-
- Documentation is not updated yet and is not integrated into VS 2010
- Some users are having trouble installing. We are working hard to determine what is causing this problem. These users may continue having trouble with 6.3.1. Please be patient as we work through this.
Please let us know what else we broke and how we can make it better!
MySQL Connector/Net 6.3.0 alpha 1 has been released
MySQL Connector/Net 6.3.0, a new version of the all-managed .NET driver
for MySQL has been released. This is an alpha 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.
It is now available in source and binary form from
[http://dev.mysql.com/downloads/connector/net/6.3.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.)
New features or changes:
- Visual Studio 2010 RC support
- Nested transaction scope support
What we know may be broken
- Documentation is not updated yet and is not integrated into VS 2010
- Data editing view (in VS) does not function in this build
Please let us know what else we broke and how we can make it better!
Custom Installer and .NET 4 problem? Solved!
I recently encountered a problem with custom installers and .NET 4. If you are using an Installer-derived class in an assembly that allows partially trusted callers then you may see this when you attempt to install with InstallUtil:
Inheritance security rules violated by type: ‘Class’. Derived types must either match the security accessibility of the base type or be less accessible.
After a little googling, I found this post that helped me solve part of the issue. The other thing you need to do is go to your installer class and add the following attributes to it. These will demand full trust for the installer class.
[PermissionSetAttribute(SecurityAction.InheritanceDemand, Name = "FullTrust")]
[PermissionSetAttribute(SecurityAction.LinkDemand, Name = "FullTrust")]
That’s it! Your installer class should work with .NET 2 and .NET 4 now.