Hi All,
I have this code that runs fine in my windows app, but for some reason when it is called from a NetTalk webserver app it does some crazy stuff. I am running this on an MSSQL backend, NetTalk 7, C8 9661.
This is the code
TCT:Guid=''
Set(TCT:TCTGUIDKey,TCT:TCTGUIDKey)
Loop
IF Access:Ticket_Charge_Types.Next()
BREAK
END
!Do Some stuff
END
The statement sent to SQL for the Ticket Charge types is this... notice the where clause.
SELECT GUID,R_TYPE,AUTOPOPULATE,AMOUNT,CANTDELETE,CANTEDIT,CHARGETYPE,PAYCOMMISSIONS,PROFITABILITY FROM TICKET_CHARGE_TYPES WHERE 0 = 1
I have this code on a dictionary trigger after Insert, and it gets the correct records from a normal clarion app, but when called from my nettalk web server app it gets no records.
Does anyone have ideas on how to resolve it?
Thanks!