Library tutorials & articles
Encapsulating ODBC in ASP .NET
- Introduction
- The Solution
- The Source Code
- Conclusion
Introduction
In an earlier article (Implementing ODBC in ASP .NET), we described some issues with Microsoft's ODBC server controls, and how to work through them. In a nutshell, although Microsoft provided the necessary data objects, they left out the logic required to wire these objects into .NET's new XML-based Dataset standard. Our article described how to perform this task manually.
Although our approach works nicely, it requires a fair amount of code, particularly for Datasets with many fields. In addition, change control can rapidly become a problem if several Web Forms must access the same Dataset, since any structural change to the Dataset (adding or removing a field, etc.) must be reflected in each Data Adapter's table mappings.
Related articles
Related discussion
-
ASP.NET Patterns every developer should know
by konikula (3 replies)
-
handling special character in xslt's
by bussureddy82 (1 replies)
-
String was not recognized as a valid DateTime.
by buvanasubi (22 replies)
-
Gridview -> Template Field -> Button
by antti.simonen (1 replies)
-
Compatibility Issue on Firefox to display on Cursor Location
by ansari.wajid (0 replies)
Related podcasts
-
CodeCast Episode 4: State of .NET, IE8, ASP.NET MVC, and O'Reilly Media
CodeCast Episode 4: State of .NET, IE8, ASP.NET MVC, and O'Reilly MediaHosts Ken Levy and Markus Egger discuss the new State of .NET events, IE8, ASP.NET MVC, followed by an interview from PDC with two editors from O'Reilly Media. More on ASP.NET MVC can be found at http://asp.net/mvc. Interview...
Related jobs
-
Microsoft .Net Architect
in AMSTERDAM (€50K-€90K per annum) -
.net developer
in Rijswijk (€2K-€4K per annum)
Events coming up
-
Mar
23
DevWeek 2009
London, United Kingdom
DevWeek is Europe’s leading independent conference for software developers, database professionals and IT architects, and features expert speakers on a wide range of topics, including .NET Framework 4.0, Silverlight 2, WCF 4.0, Visual Studio 2010, RESTful services, Windows Workflow, ASP.NET AJAX 4.0, SQL Server 2008, LINQ, C# 3, .NET Patterns, Ruby, and more.
This thread is for discussions of Encapsulating ODBC in ASP .NET.