What is the difference between server.Transfer and response.Redirect
Difference between ADO.Net data set and ADO record set
Answered by: ramakrishnag1982
View all questions by ramakrishnag1982 View all answers by ramakrishnag1982
Member Since Nov-2006 | Answered On : Aug 12th, 2007
1) A DataSet can represent an entire relational database in memory, complete with tables, relations, and views, A Recordset can not.
2) A DataSet is designed to work without any continuing connection to the original data source; Recordset maintains the contentious connection with the original data source.
3) There's no concept of cursor types in a DataSet, They are bulk loaded, while Recordset work with cursors and they are loaded on demand.
4) DataSets have no current record pointer, you can use For Each loops to move through the data. Recordsets have pointers to move through them.
Please need some more related information about the each topic..It is not sufficient to answer in Interviews.
To get the data from a database and put it on a data control In ADO they used recordset In ADO.Net they used dataset Record set is a connection oriented architecture whereas dataset supports a c...
Explain the differences between ADO and ADO.Net, asp and ASP.Net , vb and vb.Net
Answered by: ramakrishnag1982
View all questions by ramakrishnag1982 View all answers by ramakrishnag1982
Member Since Nov-2006 | Answered On : Dec 12th, 2007
Asp:
* ASP is Interpreted language based on scripting languages like Jscript or VBScript.
* ASP has Mixed HTML and coding logic.
* Limited development and debugging tools available.
* Limited OOPS support.
* Limited session and application state management.
* Poor Error handling system.
* No in-built support for XML.
* No fully distributed data source support.
Asp.Net:
* ASP.Net is supported by compiler and has compiled language support.
* Separate code and design logic possible.
* Variety of compilers and tools available including the Visual studio.Net.
* Completely Object Oriented.
* Complete session and application state management.
* Â Full proof error handling possible.
* Full XML Support for easy data exchange.
* Fully distributed data source support.
Asp:* ASP is Interpreted language based on scripting languages like Jscript or VBScript. * ASP has Mixed HTML and coding logic. * Limited development and debugging tools available. * Limited OOPS supp...
ADO1. This object model could be used even for non RDBMS products. We can read data from xml, excel, csv files also.2. ADO objects are dependent on OLEDB providers and OLEDB provider...
What is the difference between data reader & data set
Data ReaderThis is Connection oriented and can read only one record at a time. It has got no capability of reading multiple tables at a time. This needs a live connection all the time. Data SetTh...
data reader:1.It uses the connected architecture.2.It can be used as Read n forward only3.Updations are not possible4.It fectches only one record at a time.5.It is faster compare to data set.Data Set:...
Answered by: Ranjit
Member Since Oct-2005 | Answered On : Nov 28th, 2005
ADO.NET is the primary relational data access model for Microsoft .NET-based applications. It may be used to access data sources for which there is a specific .NET Provider, or, via a .NET Bridge Provider, for which there is a specific OLE DB Provider, ODBC Driver, or JDBC Driver. ADO.NET is sometimes considered an evolution of ADO technology, but it is important to note that some major changes were made between the two.
ADO.NET is something that allows us to interact with relational databases and other data sources. It is a technology that ASP.NET applications use to communicate with a database, whether we need to add a new customer record, make a purchase, or display a product catalog.
ADO.NET stands Active X Data Objects.Net.It is used in microsoft.net to communicate with datastore.ADO.NET is inherited from System.Data.dll name spaceADO.NET has two componentsthey are 1. .Net Data p...
What languages does the .Net framework support?
.NET support 44 languages only.
A .NET Framework assembly containing resources specific to a given language. Using satellite assemblies, you can place the resources for different languages in different assemblies, and the correct assembly is loaded into memory only if the user elects to view the application in that language
What platforms does the .Net framework run on?
The runtime supports windows xp, windows 2000, nt4 sp6a and windows me/98. Windows 95 is not supported. Some parts of the framework do not work on all platforms - for example, ASP.Net is only supported on windows XP and windows 2000. Windows 98/me cannot be used for development.Iis is not supported on...
The runtime supports Windows XP, Windows 2000, NT4 SP6a and Windows ME/98. Windows 95 is not supported. Some parts of the framework do not work on all platforms - for example, ASP.NET is only suppor...
The .Net Framework runs on Windows XP, Windows Server 2003, Windows 2000, NT Server 4.0, Windows 98, or Windows ME, although ASP.NET runs only on the first 3.
According to Microsoft, .Net is a "revolutionary new platform, built on open internet protocols and standards, with tools and services that meld computing and communications in new ways".A more practical definition would be that .Net is a new environment for developing and running software applications,...
.NET is a plattform that creates distributed applications and which is language independant.
According to Microsoft, .NET is a "revolutionary new platform, built on open Internet protocols and standards, with tools and services that meld computing and communications in new ways".A m...
What is the difference between ASP.Net and asp
Difference between ASP and ASP.NET ASP.NET: ASP.Net web forms have a code behind file which contains all event handling code. ASP.Net web forms inherit the class written in code behind. ASP.Net web f...
Asp.net is a next of Asp but it's not a upgraded version of Asp. Asp is a interpreted language based on a scripting language like jscripts or vbscript.Asp limited development and debugging tools avail...
What is difference in record set and dataset
Recordset provides data one row at a time.Dataset is a data structure which represents the complete table data at same time.Recordset has the logic to update and manipulate datadataset is just a data store and manipulation is done through dataadapters in .Net.
Recordset is the Read only & forward only mechanism. But Dataset is the Editable. Recordset is connection oriented and Dataset need connection once to dump the data from the data base. Dataset holds more than one table at a time but recordset holds only one.
1) A DataSet can represent an entire relational database in memory, complete with tables, relations, and views, A Recordset can not.2) A DataSet is designed to work without any continuing connection t...
What are the primitive types in Java
primtive datatyp is non object datatype
int chat short byte long float double boolean
Primitive type means .int char double float string single long .............
Server.transfer: Method ends the current webform and will executes the next webform.
One more thing...
Server.Transfer supports only ASPX pages but Response.Redirect applies even HTML pages