Bonjour à tous,
je rencontre un problème bien curieux, pour récupérer mes données, j'ai besoin d'utiliser une requête paramétrée:
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
SELECT A.CodeID AS CodeID_GeographicalArea,
		AL.Label AS GeographicalArea
 
	FROM CO_GeographicalArea A
	LEFT JOIN CO_LabelTranslation AL ON A.CodeID = AL.CodeID AND AL.LanguageID = ?
Voici le message d'erreur:

Parameters cannot be extracted from the SQL command. The provider might not help to parse parameter information from the command. In that case, use the "SQL command from variable" access mode, in which the entire SQL command is stored in a variable.
Je ne vois pas d'où peut provenir l'erreur, la syntaxe SQL est bonne.
Vous avez une idée?

Merci