C# with XML
What you recommend my use C# with XML only or to use C# with SQL server and Why. : And What the limitation storage of XML with C#.
Thank you in advance.
emind
XML can be used with C#, as long as it is for limited amounts of data. As the data size grows, the performance can be maintained only by using a Database such as SQL Server.
Regards,
Vikram
Hi,
I am working on a courier type database. It will at most have like:
~1000 senders
~1000 receivers
~5000 sending records
It won't be bigger then this as the old record will get trimmed.
I am current coding it using xml as the database files. Will this be ok or I am better off using MS Access file as storage or sql server? I don't know much about sql query at all that why I am avoid using MS Access file and sql server. All my queries are done prgrammatically via datagridview and it is working as I needed them, but I am worrying that as my database getting closer to those figures about, it will be too slow to use or something like that.
Any help would be much appreciated.
Thanks
Tony