Microsoft Data Access Application Block beginer help

S

scott289

I have successfully downloaded the Enterprise Library and the data
access block (C#). I am able to compile and run the quickstart
application.

So I would like to try the DAB in a new project. But I was unable to
find any instructions on referencing the neccessary DLLs in any of the
Help files or walkthroughs. Did I miss it somewhere?

Which DLLs do I reference? The walkthroughs seem to tell me how to use
SqlHelper and such, but I cant see any mention on how to make reference
to it. Is there a help page I am missing, or another walkthrough that
includes this important first step?

Thanks.
 
H

Henry Padilla

I have successfully downloaded the Enterprise Library and the data
access block (C#). I am able to compile and run the quickstart
application.

So I would like to try the DAB in a new project. But I was unable to
find any instructions on referencing the neccessary DLLs in any of the
Help files or walkthroughs. Did I miss it somewhere?

Which DLLs do I reference? The walkthroughs seem to tell me how to use
SqlHelper and such, but I cant see any mention on how to make reference
to it. Is there a help page I am missing, or another walkthrough that
includes this important first step?

Thanks.

Make a reference to "Microsoft.ApplicationBlocks.Data.dll".

I'm not sure where it says this in the help file.

Tom P.
 
H

hillscottc

And where is that file found? Though I have compiled and run the
walkthroughs, when I search my hard drive, i dont see that file
anywhere.
 
G

Guest

You want to reference the following DLL's:

C:\Program Files\Microsoft Enterprise
Library\bin\Microsoft.Practices.EnterpriseLibrary.Configuration.dll

C:\Program Files\Microsoft Enterprise
Library\bin\Microsoft.Practices.EnterpriseLibrary.Data.dll

// John Papa
// http://codebetter.com/blogs/john.papa
 
C

Clint (cmueller

On my computer, it's located under:

"C:\Program Files\Microsoft Application Blocks for .NET\Data Access
v2\Code\CS\Microsoft.ApplicationBlocks.Data\bin"

Then ./Debug or ./Release depending on whether you compiled the project
in debug or release mode.
 
H

hillscottc

Ah, I see where the Version difference caused me some confusion. Thanks
for the help.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top