0

I am using Oracle SQL Developer version 4.1.0.19. So this can be a very simple issue but I cannot seem to find the solution anywhere as I have just started using SQL Developer. I type in this query

create table Student(Stu_id INTEGER,Stu_name VARCHAR(60),Stu_email VARCHAR(60))
select * from Student

And when I Run the SELECT query, I get an error something like this:

Method oracle/jdbc/driver/T4CCallableStatement.isClosed()Z is abstract

I have no idea as to why this is happening , this may be very stupid but I cannot seem to find a solution. BTW I am using Oracle 11g version.

1
  • In a reply to an answer by another poster (now deleted by that responder), you said you have TWO statements: the CREATE TABLE and then the SELECT. But in your post you don't have the semicolons you have in that reply to the deleted answer, and you say "I type in this query" - which is singular, not plural. Please edit your post to correct the grammar and to add the semicolons - I read your post exactly the same way as that other responder, and I saw your corrections only there. They belong in the original post. Commented Jun 26, 2017 at 3:22

1 Answer 1

1

How did you install SQL Developer? Can you download the zip off of OTN and extract it to a fresh directory and try running it from there?

Your error message indicates something VERY bad is wrong with one of the drivers. Which makes me wonder if you messed with one of the JARs or are attempting to use an old Oracle Client with a THICK connection.

Sign up to request clarification or add additional context in comments.

4 Comments

I was given the setup by someone. Sure let me just download the zip. I'll update you.
what do your connection properties look like and what version of Java are you running?
The error doesn't mean that "something VERY bad is wrong", it means the driver is very old (pre-Java 6), as Statement.isClosed was introduced in Java 6 / JDBC 4.0
@MarkRotteveel And for the driver to be very old means something very bad is wrong.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.