Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
6answers
13k views

Problem when trying to configure enterprise library 5.0 (Data Access Application Block)

Hi There Stackoverflow, I am running into some problems while trying to get DAAB from Enterprise library 5.0 running. I have followed the steps as per the tutorial, but am getting errors... 1) ...
3
votes
2answers
244 views

The number of parameters does not match number of values for stored procedure

I am using Enterprise Library 5x DAAB to call an Oracle stored procedure with one input parameter and one output parameter. But it gives this error: The number of parameters does not match number of ...
3
votes
1answer
492 views

Are some Enterprise Library Application Blocks becoming obsolete?

With the introduction of newer paradigms in ASP.Net, are some of the Application Blocks in Enterprise Library becoming obsolete? For example, look at following: ASP.Net Membership, Role & ...
3
votes
4answers
2k views

Cast error on SQLDataReader

My site is using enterprise library v 5.0. Mainly the DAAB. Some functions such as executescalar, executedataset are working as expected. The problems appear when I start to use Readers I have this ...
2
votes
1answer
230 views

Inject DAAB Database Object with Unity

I'm trying to create a DAO object that takes a constructor dependency to the Data Access Application Block's Database object. How do I setup my .config file to have Unity resolve the dependency? I've ...
2
votes
0answers
746 views

DAAB, the best approach to use Database instances is

Guys, I am going to use Enterprise Library (4.1) and especially DAAB. Here is I have questions: What is the best approach and why: Every time when I need to run a DbCommand I create Database ...
1
vote
1answer
65 views

Dynamic connection string in DAAB

I am having a situation where i need multiple connection strings to process a request, but i am not able to implement this using the Microsoft enterprise library. somebody please tell me how can i ...
1
vote
1answer
94 views

DAAB and ref cursors, Why no up to date tutorials?

Why are there no up to date tutorials books, or anything like that online for working with enterprise library 5.0 and Oracle ref cursors? Is there no one on Earth who needs help with that? I am ...
1
vote
1answer
104 views

DAAB, do we need to handle connection opening closing manually?

I am using DAAB. Plz guide me do we need to check and clsoe connections manually after a db call ? thanks
1
vote
3answers
83 views

Retrieving SQL Server database schema and objects and reflect in a .Net application

What is the simplest way to reflect the SQL Server database schema with all its objects in a .Net application? Basically I would like my application to scan the database schema and present me all ...
1
vote
1answer
207 views

The data source is of an invalid type. It must be an IListSource, IEnumerable or IDataSource

I'm upgrading a .NET 2.0 site that uses Enterprise Library version 2 (DAAB mainly) to .NET version 3.5 and EntLib version 5. I've made the necessary changes and now I'm getting an error "The data ...
1
vote
2answers
395 views

Lightweight ADO.NET Helper Class

Can anyone point me towards a current library that provides basic wrapping of ADO.NET functionality? I'm looking for something along the lines of the old SqlHelper class and am not really interested ...
1
vote
1answer
220 views

DAL classes generater using DAAB or ado.net?

I am using enterprise library DAAB with 4 layers User interface layer, custom type layer, business logic layer, data access layer. I want to remain in 4 layers please guide is there any preferably ...
1
vote
1answer
410 views

Is the Microsoft Enterprise Library Data Access Application Block thread safe?

I can't seem to find any documentation regarding thread safety... In particular - is the Database class (and subclasses) thread safe How would I find this out for myself? Are there references to ...
1
vote
2answers
236 views

C#: Is this the correct way to use the SqlDataReader for DAAB

I have just started using the Data Access Application Block from microsoft. There are very few instructions on the correct way to use the library. Just wanted to know if this is the correct way to use ...
1
vote
4answers
1k views

Returning ref cursor from oracle stored procedure by using DAAB from MS EntLib 4.1

Is it possible to get ref cursor from oracle stored procedure by using DAAB from Microsoft Enterprise Library 4.1?
1
vote
2answers
230 views

Data Access Application Block (DAAB) and the SQL IN keyword (multiple criteria)

I am using the Patterns and Practices Data Access Application Block and I want to be able to perform a SELECT using multiple criteria like you can do in SQL using the IN keyword. Such as: SELECT * ...
1
vote
1answer
751 views

.NET TransactionScope on Oracle

we are using DAAB and TransactionScope on Oracle. Our application manage all the connection to only 1 database. This type of implementation it seems to need "Oramts.dll". Is there a way of using your ...
1
vote
4answers
2k views

How to Convert Datareader Result of DbType.Time to Timespan Object?

I am reading a result from a MS SQL 2008 Database with a column type of dbtype.time from a datareader, using c# with DAAB 4.0 framework. My problem is the MSDN docs say dbtype.time should map to a ...
1
vote
2answers
1k views

Hybrid NHibernate DAL/BLL

I have an existing asp.net webforms project that uses Microsoft's Enterprise DAAB for the DAL, I need to implement some extensive features, and I would like to use NHibernate to make things easier. ...
0
votes
1answer
50 views

What is the best to use EF or Data Access Application Block? [closed]

What is the best way to use EF or Data Access Application Block?What are the advantages and disadvantages of each?
0
votes
1answer
78 views

How to batch insert lots of rows using Enterprise Library DAAB?

How can I execute 1000s of INSERT queries using Enterprise Library DAAB? That is to say how can I insert lots of rows into a table using DAAB all at once efficiently? And without using a for-loop. ...
0
votes
0answers
63 views

Configuring the Enterprise Library DAAB for use in a SharePoint timer job

I am trying to set up a timer job which uses the Enterprise Library DAAB. The DAAB is working fine in the conext of the the front end servers (aspx page), where the data connection is retrieved from ...
0
votes
1answer
562 views

Enterprise Library 5.0 - DatabaseFactory.CreateDatabase() - Slow performance

Im using Enterprise Library 5.0 Data Access block. the Creation of a databaseinstance is really slow. DatabaseFactory.CreateDatabase() statement consumes a lot of time when connecting to SQL Server ...
0
votes
1answer
273 views

Data Access Application Block 4.1 and Transactions

Can anyone please tell me what is the prefered way to manage transaction when using Enterprise Library's DAAB (version 4.1)? I was thinking about Database NewDb = DatabaseFactory.CreateDatabase(); ...
0
votes
1answer
184 views

Data Access Application Block 5.0 fluent configuration

I am using following code to setup connection string: ConfigurationSourceBuilder builder = new ConfigurationSourceBuilder (); builder.ConfigureData () .ForDatabaseNamed ...
0
votes
0answers
270 views

How to insert several rows efficiently using Enterprise Library v5's DAAB?

What is the best way to do an insert operation that inserts multiple rows using version 5 of Enterprise Library/DAAB? I've over-simplified my requirement here: I have a DataSet, whose DataTable has ...
0
votes
1answer
226 views

Using “LINQ to SQL” and “WCF Data Services” on top of Data Access Application Block

In my application, the entity database schema is created after application deployment based on inputs captured from end user, using a tool. I cannot use Entity Framework in this situation, since ...
0
votes
1answer
316 views

Enterprise library 5 login failed for user

I've just started to use the enterprise library 5 data access application block, but I keep on getting login failed errors. I've tried the connection string that I'm using without the application ...
0
votes
2answers
314 views

How to Populate a dropdown using Enterprise Library 5.0

Is there a simple code to populate a dropdown box using Enterprise Library 5.0 DAAB? I've tried this, but it is not working: cmbOffice.DataSource = _db.ExecuteDataSet( CommandType.Text, ...
0
votes
3answers
177 views

getting multiple sets of data in one request?

I am working on a site in which as user logs in (first database request) the stored procedure varify password and user id and then returns user record that I put in session to use next. After this I ...
0
votes
1answer
1k views

Mapping Application Blocks in Enterprise Library 5.0 (Data Access Application Block)?

I have been dabbling at Enterprise Library 5 Data Access blocks and it is pretty neat that you can return objects using IRowMapper (with and without creating accessors) ...
0
votes
1answer
227 views

Disposing of custom Data Access Layer references

Our application uses a custom DataAccessLayer class almost exclusively, and within that we do use Data Access Application Block (currently version 2). We are getting the infamous "GetOrdinal" error ...
0
votes
1answer
300 views

Calling MS Access Stored Queries with Parameters using DAAB v5.0

I wanted to find out if it is possible to call MS Access Stored Queries with parameters using DAAB. I am using the Northwind sample database to test this scenario I have created the following Stored ...
0
votes
1answer
97 views

Is the MS DAAB 4.1 Database object threadsafe?

I've come across some code that has a singleton which creates / reuses a static instance of the MSDAAB Database object. Is the Database object threadsafe after creation? I couldn't find anything one ...
0
votes
1answer
13 views

How to know the exact statement fired in Data app block?

Hi We are using "Enterprise Library Data Access Application Block" to access SQL Server database. In DataAccess layer, we are calling application block's API. Internally it must be resolving the ...
0
votes
1answer
147 views

Is a base class with shared fields and functions good design

I've got a BaseDataClass with shared fields and functions Protected Shared dbase as SqlDatabase Protected Shared dbCommand as DBCommand ... //also have a sync object used by the ...
0
votes
1answer
138 views

Using DAAB to update a DataTable without a DataSet

Currently, there is only UpdateDataSet function that takes a dataset param. If there is only a datatable to update, with no dataset associated, do I need to create a dataset just to pass it in? Any ...
0
votes
1answer
908 views

Using Enterprise Library DAAB in C# Console Project

How can I prepare the configuration settings (App.config, maybe?) I need to use Enterprise Library Data Access Application Block in a C# console project? Following is what I currently trying with an ...
0
votes
3answers
2k views

Get Autonumber from newly inserted record in Access 2007 using Enterprise Library 4.1

It's been ages since I last used Access as a back end but I'm being forced to. I'm using Enterprise Library 4.1, the Data Access Application Block.. with .NET 3.5 and I wanted to know the best way ...
0
votes
1answer
405 views

How does MS Data Access Application Block(daab) compare to ado.net datareader performance wise

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 ...
0
votes
1answer
561 views

How to clear the parameter cache of a sql command?

I'm using Enterprise Library's DAAB. I have code like this: Database dBase = DatabaseFactory.CreateDatabase(); DbCommand dCommand = dBase.GetStoredProcCommand(StoredProcedureName, ...
0
votes
1answer
4k views

Returning multiple ref cursors from Oracle Procedure using DAAB & C#

I want to return data from an Oracle procedure to populate some Label controls. The procedure accepts 26 input parameters (search variable) and returns 3 output cursors. I have been successful ...
0
votes
2answers
482 views

Run-time Error on deployed project using DAAB 4.1

I'm having a weird problem on deployment while trying to use Microsoft Enterprise Library's Data Access Application Block 4.1. I get the following Unhandled Exception when trying to use the element of ...
0
votes
3answers
840 views

Microsoft Enterprise DAAB and Closing Connections

I noticed one of our internal apps was using DAAB, and that it appears to have some sort of connection leak. I thought I remember reading somewhere that when you used the following code: Database db ...
0
votes
2answers
2k views

Handling a dynamic Connection String with DAAB

I'm in the process of adding a Data Access Layer for our ASP.Net 2.0 web application that was written almost exclusively using in-line SQL calls and copious use of copy/paste. Due to business concerns ...
0
votes
1answer
1k views

DAL design using DAAB 3.5/4.0

I'm working on a .Net 3.5 web application.It has various modules say for example Customers,Orders,etc.... I need to a design Data Access Layer (DAL) for the same using Enterprise Library 4.0 (using ...