We are handling a legacy code which based on Team Developer 2005.1
There is a query like
!!CB!! 70
Set sSqlCommand = '
SELECT name, value
INTO :sName, :sValue
FROM av_system_settings
WHERE name LIKE \'Company_\%\''
If NOT SqlPrepareAndExecute( hSqlMain, sSqlCommand )
Return FALSE
Loop
If SqlFetchNext( hSqlMain, nFetch )
...
Here the into variable :sName, :sValue
are Strings but it always have empty value although the record has been looped correctly through SqlFetchNext
The into variable on other place are all fine. Just not working here one place.
Have run out of brain on this... Any idea? Guys :)