i have oracle and netbeans installed...i wish to connect oracle to java...i cannot figure out the jdbc stuff, in linux...
in windows, what i used to do was...
1. add a data source in odbc administrator ( microsoft odbc for oracle)
2. then load oracle driver
Code:
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
3. create a jdbc connection
Code:
Connection con=DriverManager.getConnection("jdbc:odbc:dsn","username","password");
i m not able to understand how to perform steps 1 and 2... on linux

i have never done this on linux before...i dont know what oracle drivers are there for linux and who provides them and where and how to add/install them...