Creating new table in database.

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

how can create a new table in a dataset and database with some columns that I want
We have a dataset ,dataadaptor and dataconnection and i mean with ADO.NET statments.
 
You cannot create a new table in the database via a dataset
You'll have to use the command object and T-SQL.

Amir jalaly said:
how can create a new table in a dataset and database with some columns that I want.
We have a dataset ,dataadaptor and dataconnection and i mean with ADO.NET
statments.
 
Hi Amir,

You will have to use database specific sql commands.

--
Miha Markic [MVP C#] - RightHand .NET consulting & software development
miha at rthand com
www.rthand.com

Amir jalaly said:
how can create a new table in a dataset and database with some columns that I want.
We have a dataset ,dataadaptor and dataconnection and i mean with ADO.NET
statments.
 
Back
Top