Link to home
Start Free TrialLog in
Avatar of InNoCenT_Ch1ld
InNoCenT_Ch1ld

asked on

Database

Well, everytime i want to use Database in my Java app, i have to go to ODBC to select my database and add it. But my application couldnt locate the database if i move it to another folder..

so how am i suppose to make it like, no matter which folder i move my database, my application can still locate it? cause i couldnt tell where the user will put the application files and database..
Avatar of Mick Barry
Mick Barry
Flag of Australia image

are we talking about an access db?
Avatar of InNoCenT_Ch1ld
InNoCenT_Ch1ld

ASKER

yup..
wait, are you trying to "say" that only MS Access has this stupid problem?
not sure if its only access (probably not) but yes it is an access problem, because in your dsn you specify the location of the access db file. If you move it you need to update your dsn.
so, how to avoid it? or should i use other db software?

normally how you guys do with your database? cause i dun want to set the User DNS.. (can it be done with another db?)
if you don't want to use a DSN then you can specify the filename in your connection string. But you can't avoid specifying the filename somewhere as it needs to know where it is so it can be accessed.

Other DBMS (eg. mysql, SQL server etc) do not require you to specify a filename because the db is communicated with using sockets and not by directly accessing the filesystem.
guess i have to "quit" the stupid MS Acess already... ;(
btw, what you mean by "the db is communicated with using sockets "?
1.  You could have a properties file and put the filepath there.
2.  You could pass the connection string or the filepath in as a command line arg.

Depends on what your app does and how secure it has to be. This is terrible for security, but it would allow you to easily modify where the database is without hardcoding it in your source code or changing the dsn.

It's not a good idea to be moving the database file around. If you need to change it because you are deploying to another computer, there is probably a way to use relative path names rather than absolute path names ( "..\database.mdb" instead of "C:\Java\Myapp\Mydatabase\database.mdb"

Dorothy
ASKER CERTIFIED SOLUTION
Avatar of Mick Barry
Mick Barry
Flag of Australia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial