sSQL.Append(" SELECT 'X' "); sSQL.Append(" FROM ProfileInsurancePlanYear "); sSQL.Append(" WHERE ProfileID = " + profileid.ToString() + " AND CropYear = " + cropyear.ToString());
This was a request that initially hit the end of access. I translated it into SQLCE and wondered what this request should do.
The structure of the table in which it falls:
ProfileID InsurancePlanID CropYear INsurance_Price Levels_XML
I assume this will select something from the Levels_XML column where profiles and crop will be matched?
Does this work even in sqlCE?
source share