How to connect to oracle jdbc?

How to connect to oracle database if jdbc thin driver is used? Any example ?I saw this in a tutorial but I can't get what are inside the parenthesis.OracleConnection connect = (OracleConnection)DriverManager.getConnection(" ", , );Anyone can help?Thx!
[280 byte] By [CuriousDummya] at [2007-11-27 2:02:11]
# 1
Oracle has an FAQ about their JDBC drivers that might help you: http://www.oracle.com/technology/tech/java/sqlj_jdbc/htdocs/jdbc_faq.htm
hungyee98a at 2007-7-12 1:43:16 > top of Java-index,Java Essentials,New To Java...
# 2

I still can't get it.

It said:

# Thin Driver, a 100% Java driver for client-side use without an Oracle installation, particularly with applets. The Thin driver type is thin. To connect user scott with password tiger to a database with SID (system identifier) orcl through port 1521 of host myhost, using the Thin driver, you would write :

Connection conn = DriverManager.getConnection

("jdbc:oracle:thin:@myhost:1521:orcl", "scott", "tiger");

I don't even know my SID , port & host. How to get them?

CuriousDummya at 2007-7-12 1:43:16 > top of Java-index,Java Essentials,New To Java...