473,503 Members | 479 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

DAAB 2.0 Vs DAAB in Enterprise Application blocks

hi,

im seriously looking for right answer ....

We are developing windows application in c#.
I implemented DAAB(Data Access Application Block) 2.0 in our application.
One of the senior asked me to implement DAAB in enterprise library.

I said DAAB 2.0 having more performance(data accessing) compare to
enterprise library DAAB. And we not using the features of DAAB in enterprise
library.

Then why should I implement DAAB in Enterprise library....

thanks a lot.....

Nov 17 '05 #1
3 3936
Personally, I like the Enterprise Library. I thought that the
Enterprise Library had the latest version of the DAAB. I like the
Enterprise Library better because it is properly refactored so that things
such as configuration and the like are handled by a core set of libraries,
and the layout is just much better.

Your boss might be right (surprizingly).

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"veera sekhar kota" <ve**************@gmail.com> wrote in message
news:62**********************************@microsof t.com...
hi,

im seriously looking for right answer ....

We are developing windows application in c#.
I implemented DAAB(Data Access Application Block) 2.0 in our application.
One of the senior asked me to implement DAAB in enterprise library.

I said DAAB 2.0 having more performance(data accessing) compare to
enterprise library DAAB. And we not using the features of DAAB in
enterprise
library.

Then why should I implement DAAB in Enterprise library....

thanks a lot.....

Nov 17 '05 #2
Hi Nicholas,

Im talking abt my personal experiance...
DAAB 2.0 is more data accessing speed comparitive DAAB in Enterprise
library...
and see the inside architecture of those blocks from the begginning onwards,
its getting changing....In DAAB 2.0 its very nice SqlHelper to access the
data.
For DAAB in enterprise library, is slow data access comparitive to DAAB 2.0.
and Im not using those features in DAAB in enterprise library.
I have couple of answers to tell DAAB 2.0 is good comparitive DAAB in
enterprise library,
like data accessing is fast ,
client backend is only SqlServer
Its a windows application
and im not using features having DAAB in enterprise library....

Do u have any reasons to oppose my views?

"Nicholas Paldino [.NET/C# MVP]" wrote:
Personally, I like the Enterprise Library. I thought that the
Enterprise Library had the latest version of the DAAB. I like the
Enterprise Library better because it is properly refactored so that things
such as configuration and the like are handled by a core set of libraries,
and the layout is just much better.

Your boss might be right (surprizingly).

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"veera sekhar kota" <ve**************@gmail.com> wrote in message
news:62**********************************@microsof t.com...
hi,

im seriously looking for right answer ....

We are developing windows application in c#.
I implemented DAAB(Data Access Application Block) 2.0 in our application.
One of the senior asked me to implement DAAB in enterprise library.

I said DAAB 2.0 having more performance(data accessing) compare to
enterprise library DAAB. And we not using the features of DAAB in
enterprise
library.

Then why should I implement DAAB in Enterprise library....

thanks a lot.....


Nov 17 '05 #3
If DAAB 2.0 works for you then by all means, use it. However, EL's DAAB has
abstracted away binding to a specific relational database by incorporating
the factory pattern and providers. Plus, it works very well with the rest of
the blocks and you can use the EL Configuration Tool to configure it.

I am curious where the performance falls down for you. Is it because there
is some instrumentation which causes a perf hit? Is there a specific
bottleneck somewhere? Do you have more specifics on where the perf hit
occurs? I ask b/c if its just the instrumentation, you can compile that out
(or just remove it) and then you still data access with all the benefits of
abstraction and configurabiity.

But again, if 2.0 works for you just fine, then that's great.

"veera sekhar kota" wrote:
Hi Nicholas,

Im talking abt my personal experiance...
DAAB 2.0 is more data accessing speed comparitive DAAB in Enterprise
library...
and see the inside architecture of those blocks from the begginning onwards,
its getting changing....In DAAB 2.0 its very nice SqlHelper to access the
data.
For DAAB in enterprise library, is slow data access comparitive to DAAB 2.0.
and Im not using those features in DAAB in enterprise library.
I have couple of answers to tell DAAB 2.0 is good comparitive DAAB in
enterprise library,
like data accessing is fast ,
client backend is only SqlServer
Its a windows application
and im not using features having DAAB in enterprise library....

Do u have any reasons to oppose my views?

"Nicholas Paldino [.NET/C# MVP]" wrote:
Personally, I like the Enterprise Library. I thought that the
Enterprise Library had the latest version of the DAAB. I like the
Enterprise Library better because it is properly refactored so that things
such as configuration and the like are handled by a core set of libraries,
and the layout is just much better.

Your boss might be right (surprizingly).

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"veera sekhar kota" <ve**************@gmail.com> wrote in message
news:62**********************************@microsof t.com...
hi,

im seriously looking for right answer ....

We are developing windows application in c#.
I implemented DAAB(Data Access Application Block) 2.0 in our application.
One of the senior asked me to implement DAAB in enterprise library.

I said DAAB 2.0 having more performance(data accessing) compare to
enterprise library DAAB. And we not using the features of DAAB in
enterprise
library.

Then why should I implement DAAB in Enterprise library....

thanks a lot.....


Nov 17 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
5362
by: sedefo | last post by:
I ran into this Microsoft Patterns & Practices Enterprise Library while i was researching how i can write a database independent data access layer. In my company we already use Data Access...
2
4359
by: David | last post by:
I have been developing applications with Java for quite a while but I am new to .NET development. I am trying to learn the ".NET way" of creating Strongly Typed Objects from a database. The...
0
1560
by: veera sekhar kota | last post by:
im seriously looking for right answer .... We are developing windows application in c#. I implemented DAAB(Data Access Application Block) 2.0 in our application. One of the senior asked me to...
0
1430
by: veera sekhar kota | last post by:
im seriously looking for right answer .... We are developing windows application in c#. I implemented DAAB(Data Access Application Block) 2.0 in our application. One of the senior asked me to...
7
1649
by: Alec MacLean | last post by:
Hi all, I'm trying to deploy an ASP.NET (1.1) app to our production webserver, but having problems with the DAAB (from Ent Lib June 2005). As you might guess, it works just fine and dandy on my...
2
1701
by: Pierre | last post by:
Hello, Is it possible to use the Microsoft Data Access Application Blocks with MySQL ? Thanks. Pierre.
2
3008
by: Kausar | last post by:
Hello All, My question is in what scenerio we should use DAAB? we are going to develop a enterprise Web Application in .Net Framework 2.0 which contains approx 200 tables. Is it sensible to use...
0
1146
by: Dharmen Patel | last post by:
I am using Enterprise Library 2006 , Data Access Application Blocks. 1. I am connecting to Oracle 9i database using DAAB. 2. I retrieve a dataset using the following code in VB.NET. ...
4
1496
by: Cirene | last post by:
I am using ASP.NET, .NET 3.5 FW and MySQL db. I was looking at the Enterprise Library Contrib Data Access Application Block....
0
7203
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
1
6995
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
7463
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
5581
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
5017
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
4678
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3157
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1515
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
738
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.