Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to retrieve data from the database. I have the database name, username, password, servername, but I don't have the software installed in my machine. Can I connect to the db and retrieve the data from the db from database from Java code?

share|improve this question
<dws>To do it without a driver, try using magic.</dws> Also please note that imploring people to realize "it is very urgent" is likely to bring you less replies, later, rather than more, sooner. DWS - dripping with sarcasm. – Andrew Thompson Feb 7 '11 at 11:47
The answer: Yes. – fwielstra Feb 7 '11 at 15:41

3 Answers

you need to have database drivers atleast like ODBC or JDBC drivers on your system where application runs to access the DB from other machine.

share|improve this answer

Yes. The jdbc driver .jar can be used stand alone. It logs a warning about a missing .dll, but that can be ignored unless you need to use windows auth.

share|improve this answer

From Java, it's easy as long as there is some kind of driver installed (for example, ODBC.) Try Googling connecting to db using odbc.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.