tags:

views:

20

answers:

2

hi, i have made a project using c# .net windows application . i deployed it also bt wen i install n run it it throws an exception

database not faund plz help me

+1  A: 

This can be one of a million reasons, and without the actual exception, we can only guess.

  • Lets say that you installed on a machine that does not have the actual db installed.
  • Or that the machine does not have access to the db server.

You might want to expand a little on the actual error message, and the Database type. Should it be a MS Access db, that should be installed with the application? Have you created the MS Access local path as dynamic/relative/absolute?

Please give a bit more detail, config for db entry, db type, exception message, etc...

astander
A: 

From the little information provided, I can think of:

  • Check configurations for the correct connection string & if the database does exist at the server mentioned
Sunny