Question
Search options not working in SQL
Hi,
I have the Following SQL statement that filters for a Search Criteria and it works fine in MySQL 4
SELECT *,MATCH (presentationID,presentationTitle, PresentationName,ProductlineName, LevelName,RoleName,presentationDescrip) AGAINST (SearchString IN BOOLEAN MODE)
FROM tbpresentations
WHERE MATCH (presentationID,presentationTitle, PresentationName,ProductlineName,LevelName,RoleName,presentationDescrip) AGAINST (SearchString IN BOOLEAN MODE)
ORDER BY productfamilyName DESC
The SearchString Variable has the following parameters:
Name = SearchString
Type = Text
Default Value = -1
Run-time Value = $SearchStringSQL
updating to SQL 5 returns the error:
MM_ERROR: MySQL Error#: 1054 Unknown column 'SearchString' in 'field list'
Any ideas?
cheers
I have the Following SQL statement that filters for a Search Criteria and it works fine in MySQL 4
SELECT *,MATCH (presentationID,presentationTitle, PresentationName,ProductlineName, LevelName,RoleName,presentationDescrip) AGAINST (SearchString IN BOOLEAN MODE)
FROM tbpresentations
WHERE MATCH (presentationID,presentationTitle, PresentationName,ProductlineName,LevelName,RoleName,presentationDescrip) AGAINST (SearchString IN BOOLEAN MODE)
ORDER BY productfamilyName DESC
The SearchString Variable has the following parameters:
Name = SearchString
Type = Text
Default Value = -1
Run-time Value = $SearchStringSQL
updating to SQL 5 returns the error:
MM_ERROR: MySQL Error#: 1054 Unknown column 'SearchString' in 'field list'
Any ideas?
cheers