How to use SQLDeveloper to connect to embedded Derby database

前端 未结 4 1838
悲哀的现实
悲哀的现实 2021-01-06 06:45

I have a project using derby and JPA. I can connect to the database fine within my application. I would like to connect to the embedded database with SQL Developer so I can

4条回答
  •  日久生厌
    2021-01-06 07:17

    SQL Developer does not support Apache Derby. It only supports a very limited (and fixed) set of DBMS as documented on the WebSite:

    • Oracle (obviously)
    • MySQL (obviously)
    • SQL Server
    • DB2
    • MS Access
    • Sybase
    • Teradata

    (All third party DBMS are listed as "read-only" on the website - whatever that means)

    You will need a "real" general purpose JDBC client to use it against Derby like Squirrel, DbVisualizer or SQL Workbench/J.

提交回复
热议问题