I have connected to a database and now i require a dataset to be polulated using the dataAdapter.Fill function. However when i try to create a dataset using
Dim dset As DataSet
i recieve the following error:
Reference required to assembly 'System.Xml, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' containing the implemented interface 'System.Xml.Serialization.IXmlSerializable'. Add one to your project.
I currently have the following imports:
Imports System.Xml
Imports System.Xml.Serialization.IXmlSerializable
Imports System
Imports System.Data
Imports System.Math
Imports Microsoft.SqlServer.Dts.Runtime
Dim dset As DataSet
i recieve the following error:
Reference required to assembly 'System.Xml, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' containing the implemented interface 'System.Xml.Serialization.IXmlSerializable'. Add one to your project.
I currently have the following imports:
Imports System.Xml
Imports System.Xml.Serialization.IXmlSerializable
Imports System
Imports System.Data
Imports System.Math
Imports Microsoft.SqlServer.Dts.Runtime