Creating Tables

  • Thread starter Thread starter Barry
  • Start date Start date
B

Barry

Hi

In C# is it possible to create a Table without using either Access
or SQL Server Database , maybe using the class OleDb, i am intrested in
sorting some data and do not need the table after if finish.
If yes is there any example source code available somewhere ???

Barry
 
Barry,

Yes, there is. You can create a DataSet and a DataTable and set the
schema yourself, as well as populate the rows yourself. The DataTable is
meant to be completely separate from where the data comes from, completely
disconnected.

Hope this helps.
 
Dear sir
Could you please guide to some cource code URL, if possible

Sorry to trouble you.

Barry

Nicholas Paldino said:
Barry,

Yes, there is. You can create a DataSet and a DataTable and set the
schema yourself, as well as populate the rows yourself. The DataTable is
meant to be completely separate from where the data comes from, completely
disconnected.

Hope this helps.


--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

Barry said:
Hi

In C# is it possible to create a Table without using either
Access or SQL Server Database , maybe using the class OleDb, i am
intrested in sorting some data and do not need the table after if finish.
If yes is there any example source code available somewhere ???

Barry
 
Back
Top