Sun Java Studio Standard 5 (SSJI9501TL9M) for PC, , Linux Logo

Related Topics:

Posted on Jul 21, 2011
Answered by a Fixya Expert

Trustworthy Expert Solutions

At Fixya.com, our trusted experts are meticulously vetted and possess extensive experience in their respective fields. Backed by a community of knowledgeable professionals, our platform ensures that the solutions provided are thoroughly researched and validated.

View Our Top Experts

From what year java created? - Sun Java Studio Standard 5 (SSJI9501TL9M) for PC, , Linux

1 Answer

Anonymous

Level 2:

An expert who has achieved level 2 by getting 100 points

MVP:

An expert that got 5 achievements.

Novelist:

An expert who has written 50 answers of more than 400 characters.

Governor:

An expert whose answer got voted for 20 times.

  • Expert 132 Answers
  • Posted on Jul 26, 2011
Anonymous
Expert
Level 2:

An expert who has achieved level 2 by getting 100 points

MVP:

An expert that got 5 achievements.

Novelist:

An expert who has written 50 answers of more than 400 characters.

Governor:

An expert whose answer got voted for 20 times.

Joined: Jul 12, 2011
Answers
132
Questions
0
Helped
67698
Points
312

Java was developed in 1995

Add Your Answer

×

Uploading: 0%

my-video-file.mp4

Complete. Click "Add" to insert your video. Add

×

Loading...
Loading...

Related Questions:

0helpful
1answer

When someone says then need to create a solution using java what do they mean?

Java is a programming software used in many areas like websites, cell phones apps and many more. Java scripts used to desigh how the web sites interact with the viewers. Java also used to create apps used in the cell phones. These apps can be designed to solve certain problems.So when someone says they need to create a solution using Java, they might refer to the fact that they need to create a new app or redesign how an app should respond to the commands.
Nov 13, 2014 • Cell Phones
0helpful
1answer

How can i corredt this error ??

report to mojang and play the pe version for a while. or you can delete your minecraft file and download it again
0helpful
2answers

I need a mini project in php or java

Hi piyushsharma,
What you need is to outsource this job, so the site I would recommend is freelancer.com You can post your project for free as a trial, explain what you need, select the PHP and Java categories and then let the programmers bid. You can chat with them and select a winner to create your mini-project.
Hope this helps, wbwTeam
0helpful
1answer

How to creat a report with java? i need Java Enterprises latest tool. how download? how to creat a exe file from java?

If you would like to create a report with java there are a couple of things that you could focus on using. You could either go for Crystal Reports, or even Jasper Reports or any other reporting kit for java. To download the Java Enterprises latest tool.. I need clarification with this one. Do you mean J2EE SDKs? if you do just go to the sun microsystems website and download it from there. To create an exe file... jars are normally the ones you get when you compile java codes. The best thing to do here is to create batch files to run your compiled java applications.
0helpful
1answer

Problem in java

This is how to create notepad application in java:
http://www.dreamincode.net/forums/showtopic66176.htm

Also, you can take a look to this one and download free source codes:
http://forums.targetlife.com/showthread.php?t=259

Enjoy it! Good luck
0helpful
1answer

How to write jdbc connections

http://www.jdbc-tutorial.com/

window.google_render_ad();

welcome_title_image.gif Java JDBC Tutorial Java JDBC Tutorial
The JDBC ( Java Database Connectivity) API defines interfaces and classes for writing database applications in Java by making database connections. Using JDBC you can send SQL, PL/SQL statements to almost any relational database. JDBC is a Java API for executing SQL statements and supports basic SQL functionality. It provides RDBMS access by allowing you to embed SQL inside Java code. Because Java can run on a thin client, applets embedded in Web pages can contain downloadable JDBC code to enable remote database access. You will learn how to create a table, insert values into it, query the table, retrieve results, and update the table with the help of a JDBC Program example.


window.google_render_ad();
Although JDBC was designed specifically to provide a Java interface to relational databases, you may find that you need to write Java code to access non-relational databases as well.
JDBC Architecture jdbc.jpg Java application calls the JDBC library. JDBC loads a driver which talks to the database. We can change database engines without changing database code.
JDBC Basics - Java Database Connectivity Steps Before you can create a java jdbc connection to the database, you must first import the
java.sql package.
import java.sql.*; The star ( * ) indicates that all of the classes in the package java.sql are to be imported.
1. Loading a database driver,
In this step of the jdbc connection process, we load the driver class by calling Class.forName() with the Driver class name as an argument. Once loaded, the Driver class creates an instance of itself. A client can connect to Database Server through JDBC Driver. Since most of the Database servers support ODBC driver therefore JDBC-ODBC Bridge driver is commonly used.
The return type of the Class.forName (String ClassName) method is “Class”. Class is a class in
java.lang package.
try { Class.forName(”sun.jdbc.odbc.JdbcOdbcDriver”); //Or any other driver } catch(Exception x){ System.out.println( “Unable to load the driver class!” ); } 2. Creating a oracle jdbc Connection

The JDBC DriverManager class defines objects which can connect Java applications to a JDBC driver. DriverManager is considered the backbone of JDBC architecture. DriverManager class manages the JDBC drivers that are installed on the system. Its getConnection() method is used to establish a connection to a database. It uses a username, password, and a jdbc url to establish a connection to the database and returns a connection object. A jdbc Connection represents a session/connection with a specific database. Within the context of a Connection, SQL, PL/SQL statements are executed and results are returned. An application can have one or more connections with a single database, or it can have many connections with different databases. A Connection object provides metadata i.e. information about the database, tables, and fields. It also contains methods to deal with transactions.
JDBC URL Syntax:: jdbc: <subprotocol>: <subname> JDBC URL Example:: jdbc: <subprotocol>: <subname>•Each driver
0helpful
1answer

To create window using java codes

What you need is FrameDemo by Java which allows you to create Frames (or windows) using Java. Get it here:

http://java.sun.com/docs/books/tutorial/uiswing/components/frame.html
Not finding what you are looking for?

92 views

Ask a Question

Usually answered in minutes!

Top Sun Computers & Internet Experts

Rob Hill
Rob Hill

Level 3 Expert

1483 Answers

Narseman

Level 3 Expert

1092 Answers

Brad Brown

Level 3 Expert

19190 Answers

Are you a Sun Computer and Internet Expert? Answer questions, earn points and help others

Answer questions

Manuals & User Guides

Loading...