How to use two different dataset to update an single adapter

  • Thread starter Thread starter prakash
  • Start date Start date
P

prakash

Dear friends

I have a Table which is stored in XML.
How to put the table to an Access database ?
The access database is an empty database. which contains no tables .

How to add the xml table to the Access database using ADO.NET ??
 
Hi Prakash,

Currently in either database, you just insert it as a standard column ie:
insert a string value containing the xml into a varchar column. In case you
are planning longer term, SQL Server 2005 / ADO.NET v2, there will be a
native xml data type.

HTH,

Greg Low [MVP]
MSDE Manager SQL Tools
www.whitebearconsulting.com
 
Back
Top