I wirte code in java and database connection with oracle. I run some script and get this error.My script work in toad but not work in my project
url include .
You may be able to get around this by following the answer of another StackOverflow post: Create Java on Oracle database with JDBC
A summary is:
CallableStatement stat = conn.prepareCall(sql);
stat.setEscapeProcessing(false);
stat.execute();
The middle line is what you seem to be missing. I couldn't figure it out until I found that post.