J
Jagan Mohan
You dont exactly need CREATE statement to do it.
You can do it in the following way
DataSet ds = new DataSet();
DataTable dt = new DataTable();
dt.Columns.Add("ColName", System.Type.GetType
("System.String"));
ds.Tables.Add(dt);
I am not sure that my understanding is correct, if not so
please do breif your problem.
Thanks,
Jagan Mohan
You can do it in the following way
DataSet ds = new DataSet();
DataTable dt = new DataTable();
dt.Columns.Add("ColName", System.Type.GetType
("System.String"));
ds.Tables.Add(dt);
I am not sure that my understanding is correct, if not so
please do breif your problem.
Thanks,
Jagan Mohan