moin chris :)
Versuchs mal mit dem Code von diesem Servlet-Tutorial:
Connection con = null;
try {
// Load (and therefore register) the JDBC-ODBC Bridge
// Might throw a ClassNotFoundException
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");// Get a connection to the database
// Might throw an SQLException
con = DriverManager.getConnection("jdbc:odbc:somedb", "user", "passwd");// The rest of the code goes here.
}
catch (ClassNotFoundException e) {
// Handle an error loading the driver
}
catch (SQLException e) {
// Handle an error getting the connection
}
finally {
// Close the Connection to release the database resources immediately.
try {
if (con != null) con.close();
}
catch (SQLException ignored) { }
}
> >
> > liebe Grüße aus Berlin
> > lina-
>
> Hihi, jetzt haben wir 2 uns aber hier gefunden ;-)
> Danke, dann werde ich das mal versuchen!
Sorry, ich bins nochmal: Also meine DB liegt unter folgendem Pfad: D:\Daten\CMDB\Service\_Test.mdb. Wie/Wo kann/muss ich den Pfad einbinden? Und meine DB ist nicht durch PW und Username geschützt. Spielt das eine ROlle?? Liebe GRüße