have a memory database with ability of sql?

  • Thread starter Thread starter Miha Markic [MVP C#]
  • Start date Start date
Or even better, read the
Accessing Data with ADO.NET
..net help topic.
It will give you an overview of ADO.NET
 
i need to build program that can connect to large DB or small one, according
user needs. but i whant that my program retrive data from tow resource in
same code of sql select.

i whant to manage data in memory, and save it like xml or somthing else.
but i need to use with sql selelect.

the dotnet offer only select method. but i want to use with standard sql.

in delphi i think that Datastore make this job. in dotnet have somthing
like?
 
Hi Mtcc,

Since I've misunderstood your question :) there is no way to control data in
memory via sql syntax out of the box.
However, you might use XmlDataDocument to get X functionality (XPath, for
example).
 
Back
Top