Jump to content

ayuda con java y oracle


Recommended Posts

hola necesito una ayuda para una aplicación de java conectada con una base de datos bueno mi consulta es la siguiente ¿como puedo hacer que esta consulta rs = stmt.executeQuery("SELECT ID,PRIMERNOMBRE,APELLIDO,AREA,CREDITO from ESTUDIANTES where "); dentro de java como hacer que onda el where dependa de una variable ingresada en java por ejemplo que sea algo asi

 

rs = stmt.executeQuery("SELECT ID,PRIMERNOMBRE,APELLIDO,AREA,CREDITO from ESTUDIANTES where "variable ingresada java) para seleccionar dentro de muchos datos solo uno por ejemplo por rut

 

bueno si me pueden ayudar les agradecería mucho de antemano muchas gracias

Link to comment
Share on other sites

supongo que debe ser una function, puedes pasarle una variable a la funcion

 

public "loqueretorna" verEstudiantePorRut(int rut){

// ...

rs = stmt.executeQuery("SELECT ID,PRIMERNOMBRE,APELLIDO,AREA,CREDITO from ESTUDIANTES where rut = " + rut + ");";

//...

}

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...