I’m getting this warning in my Output window (which doesn’t affect functionality but I don’t really understand it:
Warning: 0 : Use Procedure Bodies is now obsolete. Use Check Parameters instead
I’m using MySql.Data 6.3.7.0 I’d appreciate some help in eradicating it 🙂
It seems that the libraries’ developer marked one of the methods as
[Obsolete]. This gives a compiler warning as long as you’re calling this marked method.[Obsolete]attributes are usually used when there is a newer version of said method.MSDN Obsolete Attribute
Edit:
I’ve googled some and found one of the commits on the MySQL.Data library.