Are you running RB 6.03? I run it here on SQL Server 2000 and it places single quotes my string search expression. Change your library path to RBuilder\Source and place a breakpoint in TdaSQL.ResolveCriteria on the lines inside of the nested FormatValue routine, to see what the quotes it creates:
if (FSQLType = sqBDELocal) then Result := '"' + Result + '"' else Result := '''' + Result + '''';
Comments
single quotes my string search expression. Change your library path to
RBuilder\Source and place a breakpoint in TdaSQL.ResolveCriteria on the
lines inside of the nested FormatValue routine, to see what the quotes it
creates:
if (FSQLType = sqBDELocal) then
Result := '"' + Result + '"'
else
Result := '''' + Result + '''';
Cheers,
Jim Bennett
Digital Metaphors
http://www.digital-metaphors.com
info@digital-metaphors.com