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 a JDBC driver for MsAccess to be used in a Unix environment

I would strongly prefer it to be an open-source

Also it should support SQL statements

(Jackcess came close to being my choice- but it doesn't support SQL queries) http://jackcess.sourceforge.net/faq.html#query

share|improve this question
"doesn't support SQL queries"? What does does this JDBC driver do? – Asaph Dec 18 '09 at 17:51
I think its an API rather than a JDBC driver – RN. Dec 18 '09 at 17:53
Isn't MS Access obsolete? :) – Bozho Dec 18 '09 at 17:56
Apparently not :) We are using third party applications which uses MsAccess – RN. Dec 18 '09 at 18:04
1  
ouch! Why would you do this? Put the data on Unix or move the app to Windows! – Cheeso Dec 18 '09 at 18:07
show 4 more comments

2 Answers

up vote 1 down vote accepted

I'd recommend to use a Type 4 JDBC driver (i.e. full Java), more precisely the driver from HXTT (see this answer for some alternatives). Sadly, it's not an open source driver and it's not free. But if you are using Oracle, I think you can spend around 300 bucks for a driver.

share|improve this answer

Can you just use a JDBC-ODBC bridge for it. If you must do SQL, I've found that to be the best way.

share|improve this answer
1  
Can you do that on Unix? – RN. Dec 18 '09 at 18:57
@RN no, you can't – Kico Lobo Jan 14 '10 at 16:31

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.