Jump to content
View in the app

A better way to browse. Learn more.

FMForums.com

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

Does anybody has an example of JAVA working with JDBC and FMP?

  • 1 month later...
  • Newbies

sure thing man

first load the the driver

d = (Driver)Class.forName("com.ddtek.jdbc.sequelink.SequeLinkDriver").newInstance();

you can either do it that way of set the system property and use the driver manager to load the driver

System.setProperty("jdbc.drivers","com.ddtek.jdbc.sequelink.SequeLinkDriver");

en = DriverManager.getDrivers();

while (en.hasMoreElements()) {

d = (Driver)en.nextElement();

sb.append(d.getClass().getName());

}

k, once u have the driver get the connection

Connection con = DriverManager.getConnection("jdbc:sequelink://127.0.0.1:2399","Username","Password");

witht the above url im hosting the database on the same machine as my java app

and the port number is 2339

and now that u have the conection u can execute sql statements smile.gif

a few things that might help u.....

make sure the driver (jar file i forget its name) is in the class path or u will get a class loading exception ....

Make sure the filemaker database is running when you try and connect ....i know i know... but it got me a couple of times

and that should be it

ohh and make sure that JDBC shareing is turned on

kool

well have fun

Create an account or sign in to comment

Important Information

By using this site, you agree to our Terms of Use.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.