How sluggish is a big xml file in combination with datasets? - ADO DAO RDO RDS
This is a discussion on How sluggish is a big xml file in combination with datasets? - ADO DAO RDO RDS ; Hello,
I am currently working on a project which will run in an environment,
where the size of the database is very limited. That's why I thought
about relying in some parts entirely on xml files (and datasets) as an
...
-
How sluggish is a big xml file in combination with datasets?
Hello,
I am currently working on a project which will run in an environment,
where the size of the database is very limited. That's why I thought
about relying in some parts entirely on xml files (and datasets) as an
DB replacement.
I.E.:
DataSet myDataSetToRead = new DataSet();
myDataSetToRead.ReadXmlSchema("c:\\abcd.xsd");
myDataSetToRead.ReadXml("c:\\abc.xml");
dostuff with the dataset data
etc.
Now, I will doing this only for the little used parts application,
where maybe 5 users at once will use it.
I know that this approach is slow compared to a real DB, but, what are
the other limitations? Is there a size limit? I mean, will it somehow
break after the file reaches 50 MB? And how much slower will it be,
compared to a DB? 10 times slower? More?
-
RE: How sluggish is a big xml file in combination with datasets?
PSiegmann,
How do you plan on dealing with concurrency?
Kerry Moorman
"PSiegmann@mail.nu" wrote:
> Hello,
>
> I am currently working on a project which will run in an environment,
> where the size of the database is very limited. That's why I thought
> about relying in some parts entirely on xml files (and datasets) as an
> DB replacement.
>
> I.E.:
>
> DataSet myDataSetToRead = new DataSet();
>
> myDataSetToRead.ReadXmlSchema("c:\\abcd.xsd");
> myDataSetToRead.ReadXml("c:\\abc.xml");
>
> dostuff with the dataset data
>
> etc.
>
>
> Now, I will doing this only for the little used parts application,
> where maybe 5 users at once will use it.
>
> I know that this approach is slow compared to a real DB, but, what are
> the other limitations? Is there a size limit? I mean, will it somehow
> break after the file reaches 50 MB? And how much slower will it be,
> compared to a DB? 10 times slower? More?
>
>
-
Re: How sluggish is a big xml file in combination with datasets?
On Oct 21, 5:21 pm, Kerry Moorman
<KerryMoor...@discussions.microsoft.com> wrote:
> PSiegmann,
>
> How do you plan on dealing with concurrency?
>
> Kerry Moorman
>
>
>
Well, in the areas where I want to use this approach, only one user at
a time will write anything into the xml file.
Similar Threads
-
By Application Development in forum CSharp
Replies: 0
Last Post: 10-03-2007, 02:17 PM
-
By Application Development in forum XML SOAP
Replies: 1
Last Post: 10-24-2006, 09:57 AM
-
By Application Development in forum XML SOAP
Replies: 10
Last Post: 06-06-2006, 03:41 PM