Hi WS
Ms Access, SQL server, MSDE (a mini SQL server) are Microsoft databases.
SQL server and MSDE function as a service on your network.
MS Access is a file to connect to, however can be used when connected to in
the same way as any other database.
To get and store the information in those databases you can use the classes
as provided in ADO.NET or the classic ADO.
One of the techniques from ADO.NET is to store that data in so-called
Datasets. Those datasets you can process in your programs and that
possessing is often called ADO.NET. However, it is not different from
processing an Array or a Control. The structure of a Dataset is the same as
the structure from an XML file; however, it uses only the "element" tags
because it has the format of SQL compatible databases. XML is much more
extended as a database, by instance complex elements are not in a SQL type
database.
A dataset can be stored in a String by using different dotNet techniques,
the easiest one are the dataset.xmlwrite and dataset.xmlread. With that a
dataset becomes also very simple a dataset on disk in the XML format.
(Readable as a txt file).
I hope this helps?
Cor
|