Advertisement

04.11.2008 at 12:36PM PDT, ID: 23316251
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

The datatable.Rows.Contains() method does not find primary key

Tags: VB.NET ASP.NET 2
The datatable.Rows.Contains() method does not find the primary key value in the datatable and it definitely exists in the table.
I populated a datatable with a single column of values using a datareader, then set the PrimaryKey to column(0), the only column in the DataTable.   The values are there, for sure (64 rows X 1 column), in the datatable, but the statement

If dtProdImportFields.Rows.Contains("ProductName") Then
'do something
End If

does not work at all (the Contains function completely ignores the value passed to it Or I am not using it correctly).   The string "ProductName" is in the datatable and it is the PrimaryKey column and all values are unique, so I am stumped as to what may be going on.

Attached, is the code that generates the datatable (I think the problem may be that the PrimaryKey is somehow not being generated - though there are no errors)

Any ideas where I'm going wrong here?
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
Protected Sub GetProdImportFields(ByRef dtbl As DataTable)
        Dim sqlstring As String = "SELECT SSFieldName FROM ProdImportFields"
        Using connection As New SqlConnection(DBconnstr)
            connection.Open()
            Using command As New SqlCommand(sqlstring, connection)
                Using reader As SqlDataReader = command.ExecuteReader()
                    dtbl.Load(reader, LoadOption.OverwriteChanges)
                End Using
            End Using
        End Using
        dtbl.PrimaryKey = New DataColumn() {dtbl.Columns(0)} 'this appears correct
    End Sub
Start your free trial to view this solution
Question Stats
Zone: Programming
Question Asked By: bd9000
Solution Provided By: VBRocks
Participating Experts: 1
Solution Grade: A
Views: 280
Translate:
Loading Advertisement...
04.11.2008 at 12:43PM PDT, ID: 21337522

Rank: Sage

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
04.11.2008 at 12:45PM PDT, ID: 21337539

Rank: Sage

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
04.11.2008 at 12:48PM PDT, ID: 21337559

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
04.11.2008 at 12:50PM PDT, ID: 21337586

Rank: Sage

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
04.11.2008 at 12:59PM PDT, ID: 21337677

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
04.11.2008 at 01:00PM PDT, ID: 21337687

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
04.11.2008 at 01:03PM PDT, ID: 21337721

Rank: Sage

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
04.11.2008 at 01:12PM PDT, ID: 21337805

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
04.11.2008 at 01:16PM PDT, ID: 21337832

Rank: Sage

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
 
Loading Advertisement...
20080236-EE-VQP-29 / EE_QW_2_20070628