I am trying to gather information from a SQL Database using SQL pass thru. Here is the code that I am attempting to run using VFP 9.....
SQLEXEC(lnHandle,"SELECT db
ffenderEvent.PersonId, dbo_EventInfo.Comment, dbo_EventInfo.StartDate,;
dbo_EventInfo.TypeDescription;
FROM db
ffenderEvent INNER JOIN dbo_EventInfo ON db
ffenderEvent.EventId = dbo_EventInfo.Id WHERE db
ffenderEvent.PersonId=?180197","Results")
SELECT results
browse
I get a message that reults can not be found. What am I doing wrong? Thanks in advance.
SQLEXEC(lnHandle,"SELECT db
dbo_EventInfo.TypeDescription;
FROM db
SELECT results
browse
I get a message that reults can not be found. What am I doing wrong? Thanks in advance.