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 7354 days old. Please don't post here. Open a new topic instead.

Recommended Posts

  • Newbies
Posted

I'm wondering if anyone has a good, helpful location to bookmark for reference when various errors are encountered with FM.

Currently I am attempting to add a record to an FM table and am getting the following:

[DataDirect][ODBC SequeLink driver][ODBC Socket][DataDirect][ODBC FileMaker driver][FileMaker]Parse Error in SQL

I am a very novice user of FM, so excuse me if this is an easy one for you gurus. The above record creation was in an attempt to insert values for only a portion of the columns, not all. My initial thought was that there was a "required" column that I was not including on the add. However this does not seem to be the case.

Here is my existing code:

...

'' Filemaker statement setup

Set cnnGetRowsFMPE = Server.CreateObject("ADODB.Connection")

cnnGetRowsFMPE.Open strConStrFMPE

Set objRSFMPE = server.createobject("ADODB.RecordSet")

objRSFMPE.Open "Pending_Escrow_Files", cnnGetRowsFMPE, adOpenKeyset, adLockPessimistic, adCmdTable

objRSFMPE.addnew

objRSFMPE("Property Name") = request("ProjectName")

objRSFMPE("Property Location") = request("ProjectAddress")

objRSFMPE("Lender Name") = request("Bank")

objRSFMPE.update -- THIS IS WHERE THE ERROR OCCURS --

theFMPEID = objRSFMPE("IDNum")

objRSFMPE.close

...

Thanks much,

-Jay

This topic is 7354 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.