applet « oracle « Java Database Q&A





1. secure Oracle connection from java applet    stackoverflow.com

I've written a java applet that connects to Oracle on a hosted server. I have been testing it by connecting by VPN to my hosting service and connecting to the ...

2. Control Oracle Forms with outside program    stackoverflow.com

I work at a company that uses the Forms based Oracle 11i. A lot of employees complain of the redundancy of data entry and I want to write a program ...

3. Update The database using applets    stackoverflow.com

I have written a code in JAVA to search files from the system.User specifies the filename and extension on text input on applet window and on button click code establishes a ...

4. query oracle database through a java applet    stackoverflow.com

Actually Iam writing a plugin for an java app that comes in two flavours 1.)as executable and 2.) can be launched from a webpage as an applet. At some point I needed ...

5. "access denied" when using JDBC from a browser applet    stackoverflow.com

I have a java applet that queries an Oracle database for data. When run from inside an IDE, it functions just fine. But when I run it as an applet embedded ...

6. Access to the Oracle database using Java Applets    coderanch.com

I agree please use code /code in future posts. More info requested 1. operating system are you using 2. what is ther version of the JDK 3. what is ther version of the JDBC 4. are you gocing to use OCI or thin client I post code about 6 to 9 months ago please search for it... I have been busy ...

7. Oracle JDBC via an Applet    coderanch.com

8. Applet and Oracle JInitiator    forums.oracle.com

oracle-sun-forums, welcome to the forum. Please don't post in threads that are long dead and don't hijack another poster's thread. When you have a question, start your own topic. Feel free to provide a link to an old post that may be relevant to your problem. As your question isn't related to the subject of this thread, I'[m blocking your post. ...

9. Programming with applet and oracle    forums.oracle.com

Develop an Online Examination software in java using applets as front end and oracle as back end. Software should handle at least ten users at a time. There are Multiple Choice questions and True/False questions in the test. Questions will be randomly selected from the Question bank. There should be least repetition of questions. Candidate can enrol in more than one ...





10. Connecting to Oracle DB through Java Applet problem    forums.oracle.com

} private Connection con = null; public void init() { try { DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver()); String username = "****", password = "****"; con = DriverManager.getConnection("jdbc:oracle:thin:@oracle.***.****.****.ie:1521:oracle",username,password); } catch (SQLException ex) { System.out.println("Connection Error = " + ex.toString()); } try { Statement stmt = con.createStatement(); stmt.executeQuery("CREATE TABLE Stuff(bar VARCHAR2(40), beer VARCHAR2(40), price REAL)" ); stmt.close();

11. Using Java applet to connect to Oracle db    forums.oracle.com

So from this and your other posts here, it sounds like you're experienced programmer, even though not with Java. It sounds like you have a fundamental understanding of OO concepts too, and since you know some C++, you evidently know a bit about GUI development. As a DBA you know a lot about databases, and I would presume a lot about ...