Creating Tables

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Barry

    Creating Tables

    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


  • Nicholas Paldino [.NET/C# MVP]

    #2
    Re: Creating Tables

    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]
    - mvp@spam.guard. caspershouse.co m

    "Barry" <someone@somewh ere.com> wrote in message
    news:uWtqawGjFH A.2444@tk2msftn gp13.phx.gbl...[color=blue]
    > 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
    >[/color]


    Comment

    • Barry

      #3
      Re: Creating Tables

      Dear sir
      Could you please guide to some cource code URL, if possible

      Sorry to trouble you.

      Barry

      "Nicholas Paldino [.NET/C# MVP]" <mvp@spam.guard .caspershouse.c om> wrote in
      message news:OYvcc0GjFH A.2156@TK2MSFTN GP14.phx.gbl...[color=blue]
      > 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]
      > - mvp@spam.guard. caspershouse.co m
      >
      > "Barry" <someone@somewh ere.com> wrote in message
      > news:uWtqawGjFH A.2444@tk2msftn gp13.phx.gbl...[color=green]
      >> 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
      >>[/color]
      >
      >[/color]


      Comment

      Working...