OSX=Yosemite with table definition for usedType as usedTypeID integer usedTypeName text and with first record as 1 anything using sub STARTUP dim svalue as string svalue=dlookup("[usedTypeName]","[usedType]","[usedTypeID]=1") end sub gives Error #1510 (DFunction execution failed, SQL=SELECT TOP 1 "usedTypeName" AS "TEMP48341" FROM "usedType" WHERE "usedTypeID"=1) occurred in DLookup correct sql should be SELECT usedTypename FROM usedType WHERE usedTypeID=1
Apologies FALSE ALARM - this is NOT a BUG my mis spelling of my table name as usedType when it was UsedType in my code caused the 'error' I'd wrongly assumed that arguments to the function were case Insensitive
This is not fixed but an invalid bug.