Connect to Sql server with Ironruby for windows phone 7

Hi,
I am developing a project for Windows Phone 7 using Ironruby.
However I am not able to add referencec for Database connectivity.
and even not able to add dll System.data.
When I include Syste.data dll in .rb file, I get exception as
“NotImplementedException” in my .xaml.cs page.
Please refer the attached .rb file.
Please provide solution for this.
Regards,
Sheetal

Require should work if you pass a full assembly name (“System.Data,
Version=…, Culture=…, PublicKyeToken=…”).
Or you can load the assemblies via Hosting API
ScriptRuntime.LoadAssembly.

Tomas