We ar开发者_如何学Ce developing a java application that runs on a linux server, we need to integrate with an odbc connection on a windows box.
Is this possible?
Pablo
You can probably use a product like JDBC-ODBC Bridge from Easysoft.
BTW: I never used those, but I know this company also works (or worked?) on the unixODBC open source project.
ODBC is Microsoft techology which provides a standard interface for databases, backed by drivers for the specific database you're connecting to. I think the question you need to ask is if the database you're using has JDBC support (which is almost certain).
You can run an RmiJdbc (server) on the Windows box and then use the RmiJdbc client from the Linux box.
精彩评论