Click here to Skip to main content
15,912,977 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
how to make the database as a dll file.

please explain me clearly
Posted
Updated 12-Mar-10 19:06pm
v2

You cannot make database as DLL file. You can make your database Access Layer as a DLL. Create a class library and write your database access code in the classes of that class library. Compile it, you will get a dll. This dll can be added in your application as a reference and you can call the methods exposed by the classes of the dll to get the data.
 
Share this answer
 
That is not possible.

If you are using smaller sized databases (like a small Access one) etc you can probably install these along with your application.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900