Ver Mensaje Individual
  #3 (permalink)  
Antiguo 12/04/2007, 15:33
banescjava2007
 
Fecha de Ingreso: abril-2007
Mensajes: 7
Antigüedad: 17 años, 7 meses
Puntos: 0
Re: Java y Oracle

Cita:
Iniciado por V&ro Ver Mensaje
Hola... Necesito saber como se crea la conexion entre java y oracle para crear una base de datos.....
Gracias
void hacerAltaDB()throws SQLException{

Connection con=null;
String driver="oracle.jdbc.OracleDriver";
String url="jdbc:oracle:thin:@localhost:1521:orcl";
String usuario="banesc";
String password="dante07";

try{

Class.forName(driver);
}

catch(ClassNotFoundException e){

System.out.println("No se encontro el driver -->"+e.getMessage());
}

con=DriverManager.getConnection(url,usuario,passwo rd);

//con.setTransactionIsolation(Connection.TRANSACTION _SERIALIZABLE);

PreparedStatement ps=con.prepareStatement("INSERT INTO nom_tabla(atributo1,aatributo2)"+"VALUES(?,?)");


ps.setString(1,txt.getText());
ps.setString(2,txt.getText());

ps.execute();

ps.close();
con.close();
}