0

I have a SQL Azure database and Oracle SQL Developer. I want to connect to my Azure instance using Oracle SQL Developer. SQL Developer needs JDBC drivers to work with MSSQL databases. The jTDS driver works with SQL Developer but not with SQL Azure databases (apparently). The 4.0 version of the MS JDBC Driver works with SQL Azure but not with Oracle SQL Developer (apparently). Has anyone else been here and found a solution?

4

1 に答える 1

2

JTDS ドライバーを使用しても問題ありませんが、ssl=require を追加する必要があります。

したがって、文字列は次のようになります: driver=net.sourceforge.jtds.jdbc.Driver database=jdbc:jtds:sqlserver://YourSQLServer.database.windows.net:1433/YourDBName;ssl=require

于 2012-05-22T10:58:58.113 に答える