Hello,
I am attempting to modify the existing SqlDataSource Default.aspx file in the coolite.toolkit explorer demo. I am changing the sqldatasource to point to an oracle database. I have udpated the exiting store and gridpanel to correspond with this new connection. When I attempt to run it, I get the following error:


Request for the permission of type 'System.Data.OracleClient.OraclePermission, System.Data.OracleClient, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed.
I also get an error at the bold code below from the StoreDataBound.cs file:

 protected void PerformSelect()
{
if (!this.IsBoundUsingDataSourceID)
{
this.OnDataBinding(EventArgs.Empty);
}
DataSourceView view = GetData();
if (view != null)
{
view.Select(this.SelectArguments, this.OnSelect);
this.MarkAsDataBound();
}
}
Any ideas on how to correct?

thanks!