Can any body can tell me waht is diffrence between database concept used in the Visual basic and the data base used in the asp .net.
diffrecnce between the database concepts in vb.net and vb
Collapse
X
-
Tags: None
-
If you mean VB6 and VB.NET there are some common ideas but you move from using ADO to access your data to ADO.NET. ADO.NET is a disconnected architecture, that is requests are made to the server and kept local until updates are sent back to the server. It incorporates a number of new features such as a DataSet (where several tables, related or unrelated can be stored), a dataAdapter that connects you to your data, datatables, datarows and the like.
Look adding a DataSet to a project, dragging tableAdapters onto it and using TypedDataSets to access your data. You will really like it. -
Your question is too much theoretical and is beyond the scope of this discussion .Please follow a good book or you can easily find all that by investing some time in web searching.,Comment
Comment