Subject Re: [Firebird-Java] connection problem
Author Roman Rokytskyy
> Connection c = java.sql.DriverManager.getConnection(
> "jdbc:firebirdsql:delta:/usr/data/prz1.gdb", "boris",
> "123");

Its a bug in driver. It treats password "123" as number (since conversion
between "123" and int is possible) and sets the incorrect type.

A workaround is to include some chars in password.

Roman