Loading ...

In-memory relational data.

Who is online?  0 guests and 0 members
home  »  forums   »  asp.net topics   »  getting started / general asp.net   » In-memory relational data.

In-memory relational data.

Posts under the topic: In-memory relational data.

Posted: 9/30/2010

Contributor 2237  points  Contributor
  • Joined on: 9/24/2009
  • Posts: 172

Hello Experts,

I was reading about Datatable in ADO.NET and I have read a line but didn't get the meaning.

Line - DataTable represents one table of in-memory relational data.

Can anyone tell me what is meaning of in-memory relational data?

 

Thanks in advance.


Posted: 9/30/2010

Professional 8338  points  Professional
  • Joined on: 4/15/2009
  • Posts: 424
  Answered

 

mohit said:

user="mohit kumar"]Can anyone tell me what is meaning of in-memory relational data?

See: http://en.wikipedia.org/wiki/In-memory_database

Here are my two cents to clarify things out:

DataTables are used in .NET development to temporarily (which means in-memory) hold data as needed. Think of them as the results of a sql query against a database; they are roughly similar to CSV files or other forms of tabular data in which you can pull data into them from a database, work with the data, and then push the changes back to a database.

In other words, it provides developer a temporary cache to store data in memory and to work on data in a disconnected manner. Once your data is available in DataSet/DataTable, It can be used without ever connecting to a database.



Page 1 of 1 (2 items)