ik heb deze query:
SELECT DISTINCT VarContent.ContentID, IIf(IsNull([VarContent.vcTekst]),[CntVariabele.Waarde],[VarContent.vcTekst]) AS Resultaat, VarContent.TekstID, IIf(IsNull([CntVariabele.CookieID]),[CntTekst.CookieID],[CntVariabele.CookieID]) AS CookieID
FROM (VarContent LEFT JOIN CntVariabele ON (VarContent.ContentID=CntVariabele.ContentID) AND (VarContent.TekstID=CntVariabele.TekstID)) LEFT JOIN CntTekst ON (VarContent.ContentID=CntTekst.ContentID) AND (VarContent.TekstID=CntTekst.TekstID)
ORDER BY VarContent.TekstID;
die werkt niet meer onder XP en 2000 (wel onder 98) omdat vcTekst van type Memo is...
hoe kan ik dit oplossen (zou moeten kunnen door distinct te verwijderen, maar dat helpt ook niet helaas...)
SELECT DISTINCT VarContent.ContentID, IIf(IsNull([VarContent.vcTekst]),[CntVariabele.Waarde],[VarContent.vcTekst]) AS Resultaat, VarContent.TekstID, IIf(IsNull([CntVariabele.CookieID]),[CntTekst.CookieID],[CntVariabele.CookieID]) AS CookieID
FROM (VarContent LEFT JOIN CntVariabele ON (VarContent.ContentID=CntVariabele.ContentID) AND (VarContent.TekstID=CntVariabele.TekstID)) LEFT JOIN CntTekst ON (VarContent.ContentID=CntTekst.ContentID) AND (VarContent.TekstID=CntTekst.TekstID)
ORDER BY VarContent.TekstID;
die werkt niet meer onder XP en 2000 (wel onder 98) omdat vcTekst van type Memo is...
hoe kan ik dit oplossen (zou moeten kunnen door distinct te verwijderen, maar dat helpt ook niet helaas...)
Cogito Ergo Credo