Ver Mensaje Individual
  #3 (permalink)  
Antiguo 08/02/2006, 16:18
Avatar de Mephisto
Mephisto
 
Fecha de Ingreso: enero-2006
Ubicación: Mexico DF
Mensajes: 184
Antigüedad: 19 años
Puntos: 3
Realice un proyecto para BD utilizando Java, lo que hice fue utilizar un ODBC y de ahi utilice el driver jdbc-odbc

static String Driver = "sun.jdbc.odbc.JdbcOdbcDriver";
static String BdNombre = "Proyecto";
static String BdUrl = "jdbc:odbc:"+BdNombre;
static String BdUser = "";
static String BdPsw = "";

try{
Class.forName(Driver).newInstance();
Conexion = DriverManager.getConnection(BdUrl,BdUser,BdPsw);
Sentencia = Conexion.createStatement();
flag=1;
}
catch(Exception e){
jMessages.setText(e.getMessage());
}
__________________
Saludos...

Todos somos sabios, solo que en diferentes disciplinas...