DataSet on the fly

  • Thread starter Thread starter JPS
  • Start date Start date
Hi,

You mean like

DataRow row = ds.Tables[0].NewRow();
row["ZipCodes"] = "12345";



--
Ignacio Machin
machin AT laceupsolutions com


| Thanks. Do you know how to add values to this as well?
|
| > DataSet ds = new DataSet("dsName");
| > ds.Tables.Add("dtTable");
| > ds.Tables["dtTable"].Columns.Add("ZipCodes");
| >
| > http://www.codershangout.com
| >
| >
| >
| > JPS wrote:
| > > Does anyone know how to create a dataset on the fly with specific
names
| > > fields?- Hide quoted text -- Show quoted text -
|
 
Back
Top