Como lo agrego? Y donde lo consigo?
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes Menú
private final String NombreBD = "dbGesGolf.mdb";
private final String ConexionBD = "jdbc:odbc:Driver={Microsoft Access Driver (*.mdb)};DBQ=" + this.NombreBD;
private String SentenciaSQL;
private Connection CanalBD;
private Statement Instruccion;
private ResultSet Resultado;
public ConexionAccess()
{
try
{
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
this.CanalBD = DriverManager.getConnection(this.ConexionBD);
this.Instruccion = this.CanalBD.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_UPDATABLE);
}
catch(SQLException SQLE)
{
JOptionPane.showMessageDialog(null,"ERROR EN LA CONEXION CON BD\nERROR : " + SQLE.getMessage());
}
catch(ClassNotFoundException CNFE)
{
JOptionPane.showMessageDialog(null,CNFE.getMessage() + "ERROR DRIVER BD JAVA\nERROR : ");
}}