I try the ArcSDEQuerier transformer but it doesn't work when i specified the attribut : name ='TEST' for the search (Where). How does this transformer work ? An idea ? Thanks Julien
Tell me more
×
Geographic Information Systems Stack Exchange is a question and answer site for
cartographers, geographers and GIS professionals. It's 100% free, no registration required.
|
If you're using FME2011 then you will probably want to switch to the FeatureReader transformer. It's designed to be a replacement for the ArcSDEQuerier (and OracleQuerier). Otherwise, is TEST an attribute you are trying to match to a database field (name)? If so, you would need the syntax: name = @Value(TEST) If TEST is a text attribute, then it's preferable to put quotes around it, as in: name = '@Value(TEST)' And everything is MOST DEFINITELY case sensitive, so "TEST" is not the same as "test" or "Test" or "TesT" and it's value will be case sensitive too (so name will not match TEST if the two respective values were - for example - "ABC" and "abc") |
|||
|
|
