如何访问从SQL Server 2005的.NET的TimeZoneInfo类?Server、SQL、TimeZoneInfo、NET

2023-09-04 03:21:08 作者:汤:汤姆猫、汤圆不圆、汤若汪

本的TimeZoneInfo类有MayLeakOnAbort的主机保护属性。

The TimeZoneInfo class has a Host Protection Attribute of MayLeakOnAbort.

这似乎是prevent我访问它从SQL Server CLR。但有一个解决办法?

This seems to prevent me accessing it from the SQL Server CLR. But is there a workaround?

推荐答案

对没错。封装它在其他.NET类,然后从SQL Server的.NET程序集的引用。然后,你完成禁用安全在您的SQL Server数据库,以便您可以运行第二类。

Yeah sure. You encapsulate it in another .NET class and then reference from your .NET assembly in SQL Server. Then you complete disable the security in your SQL Server database so you can run the second class.

如果不工作,你可以创建一个COM包装,然后一个互操作的包装,仍然破坏安全的SQL Server运行的东西。

If that does not work, you can create a COM wrapper and then an Interop wrapper and still destroy security in SQL Server to run the thing.

现在,如果安全真正在意的,你可以创建一个包装需要,并把它作为从SQL code服务的比特WCF服务。这是一个有点延迟,并且不能对SQL Server,本身对象的工作,但它是清洁的。

Now, if security actually matters to you, you can create a WCF service that wraps the bits you need and use it as a service from your SQL code. It is a bit of latency and cannot work against objects in SQL Server, per se, but it is cleaner.

对不起,表露无疑的冠冕堂皇的答案,但我是在一个陌生的心情现在。 : - )

Sorry for the snarky sounding answer, but I am in a strange mood right now. :-)