June 30, 200520 yr Hi. does anyone know where i can download a jdbc driver for filemaker. I have search on filemaker.com but can't find anything
July 4, 200520 yr Author Hi. Now it looks like i have the correct driver, but i get this error when i try to access the database. " [973] Invalid Database " Below some of my code is posted, so please help if someone have any idea. Class.forName("com.fmi.jdbc.JdbcDriver"); Connection con = DriverManager.getConnection("jdbc:fmpro://localhost:2399;serverDataSource=model"); Statement stmt = con.createStatement();
July 13, 200520 yr I believe your url statement should be... "jdbc:sequelink://localhost:2399;serverDataSource=model"
July 14, 200520 yr It seems that joki1975 is using FileMaker 6. If so, the line getting connection should be like this. Connection con = DriverManager.getConnection("jdbc:fmpro:http://localhost", "", "YOUR_PASSWORD"); JDBC for FM6 (or 5.x) is totaly different from JDBC for FM7. Be sure to use jdbc driver for FM6 (name of the file is 'fmpjdbc12.jar'). It's in the product CD (FileMaker Developer version only).
Create an account or sign in to comment