Ver Mensaje Individual
  #4 (permalink)  
Antiguo 30/04/2006, 11:10
Lindberg
 
Fecha de Ingreso: abril-2006
Ubicación: Recife - Brasil
Mensajes: 23
Antigüedad: 18 años, 8 meses
Puntos: 0
Conexión con el mysql

public static final String DRV = "com.mysql.jdbc.Driver";
public static String url = "jdbc:mysql://servidor/bancodedados";
// ou public static String url = "jdbc:mysql://192.168.0.1/bancodedados";

private String username = "root";
private String password = "";
private Connection con;
private Statement st;

try {
if (con == null) {

Class.forName(DRV);
con = DriverManager.getConnection( url, username, password );
Statement statement = con.createStatement();
rs = statement.executeQuery("SELECT NOME, CODIGO FROM PRODUTOS");
HashMap teste = new HashMap();
while(rs.next()) {
//for até o numero de campos da tabela
for (int i = 1; i < 10; i++) {
valores[i] = rs.getString(i);
System.out.println(valores[i] +" "+ i);
}
}
}
}
catch (Exception e) {
System.err.println("Problemas apresentados na operacao de conexao");
e.printStackTrace();
}