我正在使用.NET Framework 4.0和MySQL。我的服务提供商允许我以中等信任模式运行我的网站。当我托管我的网站时,会生成以下错误:
Request for the permission of type 'System.Security.Permissions.ReflectionPermission, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed.
为了解决这个问题,我已经通过these links以中等信任模式运行MySQL。
但是,当我使用这些链接中的代码时,我的代码可以正常使用SELECT查询,但是当我使用INSERT查询时,会生成以下错误:
Request for the permission of type 'System.Security.Permissions.ReflectionPermission, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed.
我该如何解决这个问题?
答案 0 :(得分:0)
我希望以下选项可以帮助您:
答案 1 :(得分:0)
我怀疑这是Net 4.0的新实现,它正在使用反射,这对于中等信任环境来说是禁忌。 使用以前的版本,我使用版本6.5与godaddy,它工作得很好。