Is there embedded DB with PL/SQL support and Java API?

后端 未结 3 1913
情书的邮戳
情书的邮戳 2021-01-19 03:21

I\'m looking for embedded db with Java API for testing purposes. Also i need pl/sql support because we use oracle in production and migrations are written in pl/sql.

相关标签:
3条回答
  • 2021-01-19 03:40

    We use Firebird's pl/sql extensively. It has an embedded server you can access through JDBC.

    0 讨论(0)
  • 2021-01-19 03:41

    You could try installing Oracle XE on your local developer workstation and Continuous Integration server. Then connect with the SYS as SYSDBA or SYSTEM user to create your schema(s) before executing your unit tests.

    0 讨论(0)
  • 2021-01-19 03:49

    According to the wikipedia page about PL/SQL, the databases supporting PL/SQL are Oracle and DB2:

    • Embedded DB2
    • Embedded Oracle

    If these don't suit you, there's nothing else. PL/SQL is a creation of Oracle, so it's not expected to be widely spread.

    0 讨论(0)
提交回复
热议问题