[Python.NET] Loading "System.Data" assembley

Maksim Kozyarchuk mkozyarchuk at funddevelopmentservices.com
Thu Aug 31 14:51:13 CEST 2006


Calling Assembly.LoadWithPartialName( 'System.Data' ) seem to be
silently failing and not making System.Data namespace available.
However, loading another assembly which in turns loads system.data seems
to work.  Has anyone seen this before?  Also tried loading with full
name.

		See Example Below:
		Fails
		#Assembly.LoadWithPartialName( 'DevExpress.Utils.v6.2' )
		Assembly.LoadWithPartialName( 'System.Data' )
		from CLR.System.Data import DataSet

		Works
		Assembly.LoadWithPartialName( 'DevExpress.Utils.v6.2' )
		#Assembly.LoadWithPartialName( 'System.Data' )
		from CLR.System.Data import DataSet

Maksim
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://mail.python.org/pipermail/pythondotnet/attachments/20060831/7c1f971f/attachment.html 


More information about the PythonDotNet mailing list