Microsoft Knowledge Base Article
This article contents is Microsoft Copyrighted material.
©2005-©2007 Microsoft Corporation. All rights reserved.
Terms
of Use |
Trademarks
Article ID: 307170 - Last Review: December 3, 2007 - Revision: 1.8
DataSet column mapping throws an InvalidOperationException exception when the specified column is missing in ADO.NET
This article was previously published under Q307170
For a Microsoft Visual C# .NET version of this article, see
307989Â
(http://kbalertz.com/Feedback.aspx?kbNumber=307989/EN-US/
)
.
This article refers to the following Microsoft .NET Framework Class Library namespaces:
On This Page
SYMPTOMS
When you use
DataSet column mapping in ADO.NET, an InvalidOperationException exception is thrown if the
MissingMappingAction property is set to
Error and the column mapping that you specify is missing.
RESOLUTION
To resolve this problem, ensure that the column mapping that you specify exists. Refer to the "More Information" section for code that checks whether the specified column mapping exists.
MORE INFORMATION
Steps to Reproduce the Behavior
- Start Microsoft Visual Studio .NET.
- Create a new Windows Application project in Visual Basic .NET. Form1 is added to the project by default.
- Make sure that your project contains a reference to the System.Data namespace, and add a reference to this namespace if it does not.
- Place a Button control on Form1, and change its Name property to btnTest.
- Use the Imports statement on the System, System.Data, System.Data.Common, and System.Data.OleDb namespaces so that you are not required to qualify declarations in those namespaces later in your code.
Imports System
Imports System.Data
Imports System.Data.Common
Imports System.Data.OleDb
- Paste the following code in the Code window after the "Windows Form Designer generated code" region:
Private Sub btnTest_Click(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles btnTest.Click
Dim myDataAdapter As New OleDbDataAdapter()
myDataAdapter.TableMappings.Add("Categories", "DataCategories")
Dim myMessage As String = "Table Mappings:" + ControlChars.Cr
Dim i As Integer
For i = 0 To myDataAdapter.TableMappings.Count - 1
myMessage += i.ToString() + " " _
+ myDataAdapter.TableMappings(i).ToString() + ControlChars.Cr
Next i
MessageBox.Show(myMessage)
Dim myNewMapping As New DataTableMapping()
'Uncomment the if loop to check if the column mapping that you specify exists.
'If myDataAdapter.TableMappings.Contains("Categories1") Then
myNewMapping = DataTableMappingCollection.GetTableMappingBySchemaAction _
(myDataAdapter.TableMappings, "Categories1", "", MissingMappingAction.Error)
'End If
End Sub
- Save your project. On the Debug menu, click Start, and then run your project.
- Click the button. You receive the above-mentioned exception.
- To resolve this problem, uncomment the "if" loop in the preceding sample code, and then run the project again. Because the "if" loop checks whether the specified column mapping exists, you no longer receive the exception.
REFERENCES
For more information on ADO.NET objects and syntax, refer to the following Microsoft .NET Framework Software Development Kit (SDK) documentation:
APPLIES TO
- Microsoft ADO.NET 2.0
- Microsoft ADO.NET (included with the .NET Framework)
- Microsoft Visual Basic .NET 2002 Standard Edition
- Microsoft .NET Framework 1.1
- Microsoft .NET Framework 2.0
- Microsoft Visual Basic .NET 2003 Standard Edition
- Microsoft Visual Basic 2005
| kbtshoot kberrmsg kbnofix kbprb kbreadme kbsystemdata KB307170 |
Community Feedback System
Very often, it takes hours to solve a problem. Very often, you've looked high
and low, and have tried a lot of solutions. When you finally found it, chances
are, it was because someone else helped you. Here's your chance to give back.
Use our community feedback tool to let others know what worked for you and what
didn't.
Please also understand that the community feedback system is not warranted to be
correct, it's simply a system that we've built to let people try and help each
other. If something in a feedback response doesn't make sense to you, or you're
not comfortable making changes that the feedback talks about (like registry
edits), please consult a professional.
Thank you for using kbAlertz.com Feedback System.
-- Scott Cate
Be the first to leave feedback, to help others about this knowledge base
article.
(Optional) Name
(Optional)
Public URL Or Email
Comments
No
HTML -- Text Only Please