odbc-bridge

Is there an alternative to using sun.jdbc.odbc.JdbcOdbcDriver? [closed]

[亡魂溺海] 提交于 2019-12-23 15:09:03
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed last year . I recently migrated an older application we have at work from Java 1.5 to 1.6. I noticed that during the build, I now get a (new) compiler warning: ... DatabaseSession.java:[9,20] sun.jdbc.odbc.JdbcOdbcDriver is Sun proprietary API and may be removed in a future release So I understand what that means, but is

Connecting to SQLServer using JDBC-ODBC Bridge

人盡茶涼 提交于 2019-12-12 04:29:42
问题 I'm writing an applicationt hat was prototyped on MySQL and is now connecting to an Oracle database. All I had to do to connect to the oracle database (having built up the table structure) was change the connection string. What is the format to connect to a SQL Server DB on another machine? I've read some tutorials which tell you to use the SQL Server JDBC adaptor but I'd rather configure the application so that it's database agnostic, and just have the connection string specify the protocol

Creating a custom ODBC driver

做~自己de王妃 提交于 2019-11-26 20:06:40
问题 At my current job, we're looking to implement our own odbc driver to allow many different applications to be able to connect to our own app as a datasource. Right now we are trying to weigh the options of developing our own driver to the implementation spec, which is massive, or using an SDK that allows for programmers to 'fill in' the data specific parts and allow higher levels of abstraction. Has anyone else implemented a custom odbc driver? What pitfalls did you run into? What benefits did