Atul Kumar
Atul Kumar

Reputation: 75

Is JAVA DB compliant with Oracle 11 G?

I am using JAVA DB (Part of JDK1.7) for my development environment. We have Oracle 11g on our SIT environment. I was researching whether JAVA DB (Which is based upon Apache Derby) is compliant with Oracle 11g i.e. Will I need some changes in my query structure or code if I try to migrate my code from JAVA DB to Oracle 11g?

Upvotes: 0

Views: 174

Answers (3)

Bryan Pendleton
Bryan Pendleton

Reputation: 16339

SQL Compatibility is a big topic. You might want to start here: http://wiki.apache.org/db-derby/SQLvsDerbyFeatures

Upvotes: 0

user3081796
user3081796

Reputation: 21

it just require the connection to particular db which are using do need any extra code for db it is same for any database

Upvotes: 0

user314104
user314104

Reputation: 1538

Java DB and Oracle 11g are not entirely compatible with each other. Depending on your query's complexity, you may or may not need to port your code.

Upvotes: 1

Related Questions