joki1975 Posted June 30, 2005 Posted June 30, 2005 Hi. does anyone know where i can download a jdbc driver for filemaker. I have search on filemaker.com but can't find anything
joaocarlo Posted June 30, 2005 Posted June 30, 2005 click here: http://www.filemaker.com/support/downloads/index.html
joki1975 Posted July 4, 2005 Author Posted July 4, 2005 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();
crpatter Posted July 13, 2005 Posted July 13, 2005 I believe your url statement should be... "jdbc:sequelink://localhost:2399;serverDataSource=model"
ave! Posted July 14, 2005 Posted July 14, 2005 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).
Recommended Posts
This topic is 7071 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now