Re: How to save a datarow into dataset??
From: Cor (non_at_non.com)
Date: 03/18/04
- Next message: babylon: "Do I need to lock the database before updating?"
- Previous message: Simon Kewin: "Re: Synch via DataSet DiffGrams - is there a flaw here?"
- In reply to: Shalin: "Re: How to save a datarow into dataset??"
- Next in thread: Shalin: "Re: How to save a datarow into dataset??"
- Reply: Shalin: "Re: How to save a datarow into dataset??"
- Messages sorted by: [ date ] [ thread ]
Date: Thu, 18 Mar 2004 11:58:55 +0100
Hi Shalin,
A dataset is an object that have references to datatables, which have
references to rows which contains items
(Or writing simpler)
A dataset contains tables which contains rows which contains items
ds.tables(x).rows(y).item(z)
Is an item in a row in a datatable in a dataset.
To add a row you can do
dim dr as datarow = ds.tables(x).newrow
ds.tables(x).rows.add(dr)
I hope this helps?
Cor
- Next message: babylon: "Do I need to lock the database before updating?"
- Previous message: Simon Kewin: "Re: Synch via DataSet DiffGrams - is there a flaw here?"
- In reply to: Shalin: "Re: How to save a datarow into dataset??"
- Next in thread: Shalin: "Re: How to save a datarow into dataset??"
- Reply: Shalin: "Re: How to save a datarow into dataset??"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|