473,698 Members | 2,182 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

DataSet Xml differences

Hi,

I'm using in a .NET app : MyDataSet.Write Xml("myFileName .xml",
XmlWriteMode.Wr iteSchema);
If I'm opening the xml file in VS2005 I can see only xml, not tabular
representation of data. The same xml file opened in VS2003 has its xml and
Data tabs => everything is ok.

What is the reason ??

Thanks for any advice.

May 22 '06 #1
4 1053
Right click and select "View Data Grid" from the context menu.

--
HTH,

Kevin Spencer
Microsoft MVP
Professional Numbskull

The man who questions opinions is wise.
The man who quarrels with facts is a fool.

"Bragadiru" <ad*******@nosp am.nospam> wrote in message
news:ed******** ******@TK2MSFTN GP03.phx.gbl...
Hi,

I'm using in a .NET app : MyDataSet.Write Xml("myFileName .xml",
XmlWriteMode.Wr iteSchema);
If I'm opening the xml file in VS2005 I can see only xml, not tabular
representation of data. The same xml file opened in VS2003 has its xml and
Data tabs => everything is ok.

What is the reason ??

Thanks for any advice.

May 22 '06 #2
Hi Bragadiru,

Thanks for your feedback. Based on my research, this is a known issue in
VS.NET IDE. The problem will block the data designer showing many xml file
with embeded schema as long as it uses any system namespace like the
msdata. It also happens if we didn't find the target schema if the xml
happens contains a link to another namespace.

Please check the following link for more information on this bug.

http://lab.msdn.microsoft.com/Produc...x?feedbackid=4
5a3d825-a71b-4830-bf1e-efd9b1f48e69

Kevin Yu
Microsoft Online Community Support

=============== =============== =============== =============== =============== =
=============== ===========
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
=============== =============== =============== =============== =============== =
=============== ===========

(This posting is provided "AS IS", with no warranties, and confers no
rights.)

May 24 '06 #3
Thanks Kevin. I'll wait for next service pack for Vs2005.

"Kevin Yu [MSFT]" <v-****@online.mic rosoft.com> wrote in message
news:9k******** ******@TK2MSFTN GXA01.phx.gbl.. .
Hi Bragadiru,

Thanks for your feedback. Based on my research, this is a known issue in
VS.NET IDE. The problem will block the data designer showing many xml file
with embeded schema as long as it uses any system namespace like the
msdata. It also happens if we didn't find the target schema if the xml
happens contains a link to another namespace.

Please check the following link for more information on this bug.

http://lab.msdn.microsoft.com/Produc...x?feedbackid=4
5a3d825-a71b-4830-bf1e-efd9b1f48e69

Kevin Yu
Microsoft Online Community Support

=============== =============== =============== =============== =============== =
=============== ===========
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
=============== =============== =============== =============== =============== =
=============== ===========

(This posting is provided "AS IS", with no warranties, and confers no
rights.)

May 24 '06 #4
You're welcome. Sorry for the inconvenience!

Kevin Yu
Microsoft Online Community Support

=============== =============== =============== =============== =============== =
=============== ===========
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
=============== =============== =============== =============== =============== =
=============== ===========

(This posting is provided "AS IS", with no warranties, and confers no
rights.)

May 25 '06 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
1646
by: ScottDizzy | last post by:
I'm trying to load an xml file into a dataset, then load the same xml file with a slight change into a second dataset, then do a merge to see what changed between datasets. DataSet xmlDataSet = new DataSet("Original"); xmlDataSet.ReadXml("C:\\temp\\a.xml"); xmlDataSet.AcceptChanges(); PrintValues(xmlDataSet, "Original");
4
9460
by: lakshmi | last post by:
Hi all, My requirement is I need to have three different recordsets open at the same time. Traversing through the 3 recordsets, I would check on the data and based on some rules, return an object from my function. Will it be efficient to use a SQLDataReader or a DataSet for this situation? I understand from the documentation that there can be only one SQLDataReader associated with a connection open at a time. So, it seems like I can't...
1
4249
by: Arjen | last post by:
Hi, What are the main differences between a dataset and a dataview? What should I cache dataset or dataview... or what is the best thing to do in what situation? Thanks! Arjen
4
7483
by: Brian Keating | last post by:
wonder if anyone can help me here, i've a framework 1.1 dataset which i serialize in framework 1.1 and deserialize in framework 2.0. This is fine, problem is that i want to modify some of the records in framework 2.0 and serialize the data so framework 1.1 can deserialize it and do what it required. Is this possible?
3
2232
by: JimGreen | last post by:
We are designing a WinForm application ( three tiered) There is a debate in our group as to whether we should pass datasets or our custom collections from business layer to the user interface layer. The data is stored in memory (fetched from DB only once). The collection is dynamic in the sense that it can change. My personal opinion is that using dataset makes you code take much more memory than a custom collection. Datasets have...
1
2533
by: matt | last post by:
hello, i have a web app that allows users to query our oracle db and produce a dataset of report data. they then have the option to serialize this data and store it in the database. later, then can re-run the report and get fresh data. now, they would like to be able to compare the fresh data to the stored data, getting a break-down of added/deleted/changed rows. on the surface, this sounded plausible -- by deserializing the stored
1
4751
by: Bmack500 | last post by:
I'm using the following subroutine. The two different XML files are identical with the exception of three additional records in the second one. One has 450 records, and the other has 453. After merging, I get 903 records. I guess what I expected was 3 records; just the differences in the two. The two tables have the exact same structure, etc.... So am I misinterpreting how to do this? It seems to me that the merge should produce only...
5
2739
by: bob | last post by:
Hi, My app needs to read a text file, compare the data to that already stored in the DB and generate a text file of the differences. The UI displays the text file data and the db data in a series of Datagridviews. Piclk a row in the text file master table dgv and the other dgvs move to the appropriate records so you can eyeball the differences before generating the difference file.
4
1205
by: Andy B | last post by:
I have a wizard on a page that will dynamically create a dataset as it goes along based on user input. When the wizard is done, it will dump all of the data it collected/created in the wizard to an xml file. Should this be an in memory version or a dataset or a file based dataset?
11
2886
by: casucci | last post by:
I do a return as XMLDataDocument in my webservice but it returns not with the namespaces etc in them. Anyone have and example where I can have the webservice return it as a XML. C# preferred. Flash just sees it as an object when it calls the web service. Thanks
0
8601
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9156
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9021
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8892
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
7716
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
4614
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3043
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
2327
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
1998
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.