7
Answers

Database Management Code

Cos Marchy

Cos Marchy

14y
8.8k
1

Hello all,
This is a bit if a broad brush question but i'm hoping there is someone out there who has encountered a need for this as well.
I'm wondering whether some 'database' management code exists out there (for want of a better description!!).    What I mean by this is I am looking for some code to allow me to select a server and then select a database.  I am developing some code and part of it should allow users to select a database which the application subsequently uses.  The idea is that the database can quickly and easily be changed. 
I am hoping someone can perhaps offer some advise or links to something that already exists perhaps...I hate re-inventing the wheel when I don't have to!!
Thanks
Answers (7)
0
Sujeet Singh
NA 129 0 7y
this is usually means one of two things:
  1. There is some very unusual code path which, when taken, always causes a crash
  2. A race condition exists between threads in your program. Thus, the crash appears unpredictably and may be difficult to reproduce

My advice to you is to start the program in the debugger, and leave it running until the exception is thrown. Then you can come back here and provide us with the relevant code, stack trace, debug output, etc.