Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What are major difference between classic ADO and ADO.NET
What are major difference between classic ADO and ADO.NET ?
✍: Guest
Following are some major differences between both
? As in classic ADO we had client and server side cursors they are no more
present in ADO.NET. Note it's a disconnected model so they are no more
applicable.
? Locking is not supported due to disconnected model.
? All data persist in XML as compared to classic ADO where data
persisted in Binary format also.
2007-10-24, 5327👍, 0💬
Popular Posts:
What is the difference between const char* p and char const* p? In const char* p, the character poin...
Can Java object be locked down for exclusive use by a given thread? Yes. You can lock an object by p...
What's the difference between J2SDK 1.5 and J2SDK 5.0? There is no difference, Sun Microsystems just...
Write an equivalent expression for x%8? x&7
How can I search for data in a linked list? Unfortunately, the only way to search a linked list is w...