AIngellis
AIngellis

Reputation: 23

Where do you get the sqlj libaries for java?

I've been charged with writing a DB manipulator with java for a project.
My professor gives us material that says to use the sqlj library (Oracle I'm assuming?), but nobody explains where it comes from or how do download it.
I've been looking for hours now.

Upvotes: 1

Views: 2918

Answers (5)

finx
finx

Reputation: 1463

The jars you're looking for are in Oracle Database Client. You can download it here: http://www.oracle.com/technetwork/database/features/jdbc/index-091264.html

Upvotes: 2

AngocA
AngocA

Reputation: 7693

You can download DB2 Express-C and compile your SQLj classes, generate the java files, and access plans for the database.

Upvotes: 0

Christian Uhl
Christian Uhl

Reputation: 372

SQLJ is not a library, it is a language extension - this means you'll have to use a preprocessor to compile your java code to .sqlj files, which can then be executed. It's not as simple as including a library.

this might get you started - you will need an Oracle environment on your machine though, I'm not sure if it's freely available

Upvotes: 1

Dave Newton
Dave Newton

Reputation: 160191

The SQLJ site?

http://www.sqlj.org/

Unless you mean the executable, but I'm not sure what that is:

http://www.oracleutilities.com/OSUtil/sqlj.html

Upvotes: 2

d1e
d1e

Reputation: 6442

Usually when you look for libraries, try typing: library-name maven repository, that will usually give you the right library, if not - that means "The library is kinda unusable and there are lots of better tools".

P.S.: Don't listen to your professor, just do it using standard JDBC or JPA.

Upvotes: -1

Related Questions