Ciao, come si fa a "tagliare" un dataset limitandolo alle prime "x" righe piuttosto che alle ultime "y"?
Grazie e ciao
Ciao, come si fa a "tagliare" un dataset limitandolo alle prime "x" righe piuttosto che alle ultime "y"?
Grazie e ciao
cosa intendi per "tagliare"?
Hey hey, my my Rock and roll can never die!
sinceramente non lo sò.
fin ora ho solo aggiunto tabelle non elimiate.
forse ti può essere utile.
// -------
Dim Ds as dataset = new dataset()
Dim objtable as DataTable
ObjTable = ObjDataSet.Tables.Add("pippero")
'riempi dataTable
..
// --------
per tagliare intendo... su un XML di 100 "record", prendere solo i primi 5!![]()
xml mi sfugge.. sicuramente lo trovi su
http://www.xmlforasp.net
se è un database
select top 5 from tabella order by id desc
?![]()