try {
Class.forName("interbase.interclient.Driver");
Connection con = DriverManager.getConnection("jdbc:interbase://localhost/c:/data/base.gdb","user","password");
} catch ( ClassNotFoundException cnfe ) {
System.err.println("Couldn't locate the driver class: "+cnfe);
} catch ( SQLException se ) {
System.err.println("Exception creating the database connection: "+se);
}
Проблема с InterBase 5.5 и JAVA.
Есть база InterBase, драйвер Firebird InterClient 2.01, JSDK 1.4.2.
Пытаюсь к ней подконнектиться таким образом:
Код:
Выдает вот что
Код:
Exception creating the database connection: interbase.interclient.CommunicationException: [interclient] ?????? ?????: ?????? ?????? ??? ??????? ????????? ?????????? ????? ????? ? ???????? localhost.
????????? SocketException: "Connection refused: connect".
???????? ?????????? interbase.interclient ??. ? ??????????? ?? API.CommunicationException
????????? SocketException: "Connection refused: connect".
???????? ?????????? interbase.interclient ??. ? ??????????? ?? API.CommunicationException
Работаю в Eclipse 2.1.0.
Кто-нибудь знает в чем проблема?
http://prdownloads.sourceforge.net/firebird/FirebirdSQL-1.0.1.zip?download
DriverName org.firebirdsql.jdbc.FBDriver
DatabaseURL jdbc:firebirdsql:localhost/3050:c:\bases\base.gdb[?lc_ctype=WIN1251]