Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×
The Claris Museum: The Vault of FileMaker Antiquities at Claris Engage 2025! ×

This topic is 6201 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Posted

Hi, I'm having trouble getting ther FMFind function to work using FM7.

FMNew() works, so the problem does not seem to be with the webserver.

Here is my code, maybe there's something I'm overlooking?

$fm_server = "fmtest";

$query = new FX($fm_server, 80, "FMPro7");

$query->SetDBUserPass("user", "pass");

$query->SetDBData("Clients.FP7","FormView",'All');

$query->AddDBParam('Client_number',$row["client_number"], 'eq');

$queryUpdate = $query->FMFind();

echo "found:" . $queryUpdate["foundCount"];

foundCount is always zero, even though this client number exists in the database.

Any suggestions?

  • 2 weeks later...
Posted

Hi,

First your username password are backwards. It should be

$query->SetDBUserPass( "pass", "user");

Also, in your find you are referencing a variable $row["client _number"].

Where are you gathering this from?

To ensure your query is well formed and to debug searches it is sometimes valuable to hard code the value in your query that you are looking for in your database. This can ensure it will return the correct result.

Let us know how you get on.

This topic is 6201 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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

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