Re: Movement of record
Tech-Archive recommends: Fix windows errors by optimizing your registry
WilliamMomo,
Be aware that a datases is a wrapper around datatables which you can compare
with recordsets (although a dataset/datatable is disconnected)
The movenext etc through a datatable in .Net is much easier than it was with
Ado
First to address your table
dim dt as datatable = dsLoginCheck.Tables(0)
dt.rows(0) is the first
dt.rows(0+1) is the next row
dt.rows(dt.rows.count-1) is the last
etc think about it yourself what an endless posibilities you have with this
I hope this helps,
Cor
.
Relevant Pages
- Re: Cannot conceptulize how it should be done
... Can you use DataTables in the same was as Recordsets against middle-tier components? ... (Public WithEvents rsSRCustomers as ADODB.Recordset) ... I was using those ADOrecordsets for use in other libraries (ArcObjects ... (microsoft.public.dotnet.framework.adonet) - Re: Moving memory recordsets from ADO 2 to ADO.NET - correction
... A correction. ... > Use DataTables to store your data and build DataViews to index and allow ... >> These memory recordsets are part of the complicated logic used to display ... (microsoft.public.data.ado) - Re: Moving memory recordsets from ADO 2 to ADO.NET
... The simplicity of the memory recordsets is clearly demonstrateable and they ... > Use DataTables to store your data and build DataViews to index and allow ... (microsoft.public.data.ado) - Re: probleme mit visual basic 2008
... Bei ADO.net gibt es keine Recordsets mehr. ... Dort gibt es eine Reihe von Beispielen mit dem DataGridView, ... die auch alle das Arbeiten mit DataTables, DataView u. dem ... (microsoft.public.de.vb.datenbank) - Re: DataSet Question
... A dataset is a collection of datatables the last looks more like recordsets. ... a connection ... dim conn as new sqlclient.sqlconnection ... (microsoft.public.dotnet.general) |
|