System.Data Problem

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

We are facing problem with the version of System.Data dll.

Microsoft has a known problem with the System.dll
836874:System.ArgumentOutOfRangeException occurs intermittently with ADO.NET

I wanted to download System.Data with a version 1.1.4322.1007

Can some one tell me how do I get this one?
I went msdn but i could not find that they are saying that it comes with
certain hotfix, which is available but i could not find that.

Would appreciate any help.

Thanks

Dinesh
 
you can only get hotfixes thru your support agreement. if you don't have
one, open a support call (they will probably charge you) and they will give
you access to the hotfix.

you can look in each service pack to see what hot fixes it includes.

-- bruce (sqlwork.com)
 
You might want to try this first -- the sample code on MSDN is wrong in that
it leaves out a key bit: You have to explicitly assign a key field prior to
binding to the datagrid, even though the dataset may appear to have already
assigned it for you.

Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
SQLDataAdapter1.Fill(DataSet1)
If Not IsPostBack Then
DataGrid1.DataKeyField() = "MyPrimaryKeyFieldName"
DataGrid1.DataBind()
End If
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top