Problemas com InterClient

Oi pessoal,

estou tentando conectar o firebird com o driver interclient, existe algum problema?!

quando eu testo a conexão com o Class.forname(“interbase.interclient.Driver”) não me retorna nenhum erro, porém quando tento acessar o banco é lançado o seguinte erro!

java.sql.SQLException: No suitable driver

segue código talvez o problema esteja nele

[code]
public class abc {
public static void main (String[] abc) {
Connection connection = null;
try {
Class.forName("interbase.interclient.Driver");
connection = DriverManager.getConnection("jdbc:interbase:localhost/3050:/opt/firebird/bin/teste.gdb","SYSDBA", "masterkey");

	} catch (Exception e) {
		System.out.println(e.toString());
	}
		
		
}

}[/code]
ps: estou usando o kurumin, o gdb está dentro da pasta /opt/firebird/bin

se alguem souber oq estou fazendo de errado por favor posta ae!
=]
falowww

Oi

dnakabal, seguinte, este driver no CLASSPATH do sistema?

T+