I am going to use the DAAB to prevent a lot of manual labor in my database intensive application. But before I get started I would like to know if there would be any noticeable perfoemce differences between using the native ado.net datareader and the DAAB.
How does MS Data Access Application Block(daab) compare to ado.net datareader performance wise
736 Views Asked by Luke101 At
1
There are 1 best solutions below
Related Questions in C#
- Passing arguments to main in C using Eclipse
- kernel module does not print packet info
- error C2016 (C requires that a struct or union has at least one member) and structs typedefs
- Drawing with ncurses, sockets and fork
- How to catch delay-import dll errors (missing dll or symbol) in MinGW(-w64)?
- Configured TTL for A record(s) backing CNAME records
- Allocating memory for pointers inside structures in functions
- Finding articulation point of undirected graph by DFS
- C first fgets() is being skipped while the second runs
- C std library don't appear to be linked in object file
- gcc static library compilation
- How to do a case-insensitive string comparison?
- C programming: Create and write 2D array of files as function
- How to read a file then store to array and then print?
- Function timeouts in C and thread
Related Questions in ADO.NET
- Are there drawbacks to leaving a SqlConnection open long-term?
- Stored procedure's output parameters not updating
- An unhandled exception of type 'system.data.oledb.oledbexception'
- how to get current row index when reading DbDataReader in ADO.net
- Entity Framework throws Invalid object name
- Ignore max length property on ADO.NET DataTable
- How to fill two different datagrid from one mysql table in c#
- Ado.net running SQL Server stored procedure can't retrieve output value when using ExecuteReader
- DBConcurrency exception not occuring when data has been updated elsewhere
- Use wildcards in ado.net sybase parameter
- How to copy rows from a DataTable to another DataTable WITHOUT deleting existing rows?
- Use in operator in stored query in ms access with ado.net
- How to use entity framework with business objects
- ADO.Net INSERT not inserting data
- SQL Server 2012 - Bulk insert error - This operation conflicts with another pending operation on this transaction
Related Questions in DATA-ACCESS-LAYER
- How do I cache something within a request in EWL?
- VB.NET Using in Using
- SettingsProvider class - should it be in DAL or BLL project?
- How to know the invoker of my classes and methods in java?
- DAL Repository pattern joins using dapper
- Does Entity Framework or Telerik Data Access support DATA migrations? (NOT schema migrations)
- WCF App_Code folder dosen't recognized
- How to efficiently handle slow CLOB reading from Oracle in .Net?
- How to organize a project into three tiers?
- Update the datatable without using DataAdapter.Fill 2 times
- How do I used Count(*) with DAL2?
- Is it possible to use commandType = text to call a stored procedure using System.Data.OracleClient
- What is DTO equivalent term for objects returned from DAL?
- Recommended considerations to design **Data Access Layer**
- Advice on replacing Enterprise Library Data Access Block by Entity Framework
Related Questions in DAAB
- Inject DAAB Database Object with Unity
- Dynamic connection string in DAAB
- The number of parameters does not match number of values for stored procedure
- How to batch insert lots of rows using Enterprise Library DAAB?
- Why is a call to DatabaseInstance.ExecuteSprocAccessor<T>(...) taking so long for such a simple query?
- Calling MS Access Stored Queries with Parameters using DAAB v5.0
- DAL classes generater using DAAB or ado.net?
- Retrieving SQL Server database schema and objects and reflect in a .Net application
- Data Access Application Block 5.0 fluent configuration
- ODP.NET in Microsoft Enterprise Library 6.0
- Returning ref cursor from oracle stored procedure by using DAAB from MS EntLib 4.1
- Get Autonumber from newly inserted record in Access 2007 using Enterprise Library 4.1
- How does MS Data Access Application Block(daab) compare to ado.net datareader performance wise
- Using Enterprise Library DAAB in C# Console Project
- C#: Is this the correct way to use the SqlDataReader for DAAB
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Most of your performance hit is going to be in the database reads/writes. That's true whether you use ADO.NET or DAAB, or any other DAL for that matter.