I could swear that just a couple of months ago I downloaded a copy of the Java 1.5 SE JDK and I did not have to give them information on my ... |
According to the JDK 7 feature list Java's Unicode support will be updated (from Unicode 4.0 in Java 6) to Unicode 5.1 although Unicode 5.2 is available since October ... |
We have a project which (assumed) would be finished in 1-2 years. By then, the JDK7 (and hopefully the Java7 JCP spec) should be ready.
But, I wonder, how probable is the ... |
I just want to know as it does seem like they have duplication of effort in maintaining two JDKs.
|
We need to move many Java applications that is build with Sun JDK runs on sun JRE in Solaris 10 to AIX.
We are concerned about the applicaion working the same on ... |
I would like to configure the Oracle JDK to use IBM's FIPS-compliant JCE/JSSE security providers. What JAR files do I need and where should they be installed? What should the provider ... |
I have couple of fields in oracle which is NVARCHAR and I am using Java 1.5. If I read those values as string is that okay or is there a better ... |
|
I have a Windows 7 64-bit system, on which I have installed Java JDK 7 6-bit version ... Its installed in its default directory:
C:\Program Files\Java\jdk1.7.0\bin
I have also set the JAVA_HOME Environment ... |
How can I run Oracle SQL Developer on a version of Java it supports (1.6) while running Java 1.7 for everything else?
I can install both JDK's on my system, but I'm ... |
I'm writing a database accessor in Java. The database is in Oracle 11g, of which I am absolutely not familiar, and I have JDK 1.6.
- Will ojdbc4.jar do for my program? We're ...
|
I have installed netbeans 7.0 on Oracle Linux 6.0 with JDK 7. My problem is regarding databases in service tab. When I click on Databases I am not getting any of the driver/database installed on the system.(I have done full installation). Please see the attached screenshot. What is the workround for this problem? Thanking you. |
|
|
Hi all, I am trying to write a stored procedure in pl/sql to encrypt some fields in my database(Oracle 9i). I am using a java method wrapped in pl/sql to do the encryption/decryption. The problem is that I cannot access the javax.crypto classes (secretkeyfactory etc). I have included all the JCE jar files in the {java.home}/lib/ext/ directory and I have updated ... |
Dear all, We are using JDK 1.5 version in our project. We have some other jar files also (some 3rd party and some given by the client) which require JDK 1.5. We have Oracle 10g as database. The cleint is also using the Oracle 10g as database. In this project, we have to generate some java code, and that code has ... |
|
I tried following 2 combition one each with ojdbc5.jar and ojdbc6.jar, I got the error for both. Jdk 6 Jdbc: ojdbc5.jar Database : Oracle 10.2.0.4 Error Exception in thread "main" java.sql.SQLException: Io exception: Unknown host specified at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:112) at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:146) at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:255) at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:387) at oracle.jdbc.driver.PhysicalConnection.(PhysicalConnection.java:441) at oracle.jdbc.driver.T4CConnection.(T4CConnection.java:165) at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:35) at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:801) at java.sql.DriverManager.getConnection(DriverManager.java:582) at java.sql.DriverManager.getConnection(DriverManager.java:185) at testjdbc.main(testjdbc.java:11) Jdk 6 Jdbc: ... |
|
Hi, I'm having a terrible (but simple) problem... I'm trying to make 2 database connections: first I make one, use it and close it, then I make the other , use it and close it. Here's the code (very simple code) : import java.sql.*; public class Teste { public static void main( String[] args ) throws Exception { Class.forName("oracle.jdbc.driver.OracleDriver"); Connection con ... |
Hi all, I am trying to write a stored procedure in pl/sql to encrypt some fields in my database(Oracle 9i). I am using a java method wrapped in pl/sql to do the encryption/decryption. The problem is that I cannot access the javax.crypto classes (secretkeyfactory etc). I have included all the JCE jar files in the {java.home}/lib/ext/ directory and I have updated ... |
I want to connect to database built in oracle.I am using oracle 8i and jdk 5.0 .JDBC drivers provided by oracle are compatible with two types of jdk.one is jdk 1.2.x and another one is jdk1.1. for jdk 1.2.x there is classes12.zip and for jdk1.1. classes111.zip is available.which one i use? and what is difference between these two versions? |
|
Hello, I have written a java program in JDK 1.4 ( Which I have compiled in J++). I am dont know how to connect oracle ( 9i / 10g) as Backend to my java program. Please send the code / instructions to connect my backend. my program includes oracle tables.. Please help me.. thank you Jayanth |
|
Actually, I noticed my java code written and compile in JDK 1.3 will not able to compile in JDK 1.5. This is due to one function - compareTo has changed in JDK.15. It required to cast the object before comparison. Hence, I was very doubt on how Oracle 11g JVM running the java code compile in 1.3 in background. Will Oracle ... |
public class TestSocket { public static void main(String[] args) { try { Socket s=new Socket("www.ptoye.com", 80); } catch (Exception e) { System.out.println("Connection fail:"+e); } } } On my machine running Java 7 64-bit it times out as I've said. But I've found that if I add the switch -Djava.net.preferIPv4Stack=true to the command line it works OK. So this seems to be ... |