Hello all
can we use datalink in while ?
i dont know data link have eof or not
thank you for all helps
Newbe Question
Please refer to our documentation at http://www.devart.com/dotconnect/sqlserver/docs/ , the Database Application Development Concepts part, the InterForm Technology section.
If you encounter any difficulties, feel free to contact us.
If you encounter any difficulties, feel free to contact us.
-
burak.ogutken
- Posts: 15
- Joined: Wed 15 Jul 2009 20:21
DataLink works like Microsoft's BindingSource component.
Code: Select all
dataLink1.CurrentRow.BeginEdit();
dataLink1.CurrentRow["ENAME"] = "11";
//cancel the changes
dataLink1.CurrentRow.CancelEdit(); //or dataLink1.CancelEdit();