あれから独自に調査してコードを

Connection conn = DriverManager.getConnection(
  "jdbc:firebirdsql:localhost:/data/employee.gdb",
"sysdba",
"masterkey");

から

Connection conn = DriverManager.getConnection(
  "jdbc:firebirdsql:local:/data/employee.gdb",
"sysdba",
"masterkey");

に変更したのですが、そうするとエラーメッセージが変わりました。

java.lang.RuntimeException: Failed to initilize jaybird native library. This is most likley due to a failure to load the firebird client library.
at org.firebirdsql.ngds.GDS_Impl.attemptToLoadAClientLibraryFromList(GDS_Impl.java:135)
at org.firebirdsql.ngds.GDS_Impl.<init>(GDS_Impl.java:82)
at org.firebirdsql.gds.GDSFactory.createGDSForType(GDSFactory.java:63)
at org.firebirdsql.gds.GDSFactory.getGDSForType(GDSFactory.java:48)
at org.firebirdsql.jca.FBManagedConnectionFactory.<init>(FBManagedConnectionFactory.java:127)
at org.firebirdsql.jdbc.FBDriver.connect(FBDriver.java:121)
at java.sql.DriverManager.getConnection(Unknown Source)
at java.sql.DriverManager.getConnection(Unknown Source)
at JayBirdTest.main(JayBirdTest.java:20)

になったのですが、これの解決方法がわかりません。わかる方いらっしゃったら教えてください。よろしくおねがいします。